2023-04-20 05:40:12 +00:00
|
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
import { defineConfig } from "vite";
|
2023-04-19 21:40:25 +00:00
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
export default defineConfig({
|
2023-04-20 05:40:12 +00:00
|
|
|
plugins: [react()],
|
|
|
|
server: {
|
|
|
|
watch: {
|
|
|
|
usePolling: true,
|
|
|
|
},
|
2023-04-20 22:47:29 +00:00
|
|
|
host: true,
|
2023-04-20 05:40:12 +00:00
|
|
|
strictPort: true,
|
2023-04-20 05:46:55 +00:00
|
|
|
port: 4173,
|
2023-04-20 05:40:12 +00:00
|
|
|
},
|
|
|
|
});
|