18 lines
474 B
TypeScript
18 lines
474 B
TypeScript
|
import { defineConfig } from "vite";
|
||
|
import react from "@vitejs/plugin-react";
|
||
|
import checker from "vite-plugin-checker";
|
||
|
|
||
|
// https://vitejs.dev/config/
|
||
|
export default defineConfig({
|
||
|
base: "",
|
||
|
server: {
|
||
|
port: 8080,
|
||
|
},
|
||
|
resolve: {
|
||
|
// Resolve the 'module' entrypoint at all times (not the default due to Node.js compatibility issues).
|
||
|
mainFields: ["module"],
|
||
|
dedupe: ["react", "react-dom"],
|
||
|
},
|
||
|
plugins: [react(), checker({ typescript: true })],
|
||
|
});
|