17 lines
345 B
JavaScript
17 lines
345 B
JavaScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
base: "./",
|
|
plugins: [react()],
|
|
server: {
|
|
host: "0.0.0.0",
|
|
},
|
|
build: {
|
|
rollupOptions: {
|
|
external: ["#minpath", "#minproc", "#minurl"],
|
|
},
|
|
},
|
|
});
|