forked from Qortal/Q-Manager
20 lines
365 B
JavaScript
20 lines
365 B
JavaScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
base: "./",
|
|
server: {
|
|
watch: {
|
|
usePolling: true,
|
|
ignored: [
|
|
'**/node_modules/**',
|
|
'**/.git/**',
|
|
'**/.vscode/**',
|
|
'**/dist/**'
|
|
],
|
|
},
|
|
},
|
|
});
|