Files
RRS/vite.config.js
T
2026-09-12 03:08:23 -04:00

13 lines
325 B
JavaScript

import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
server: {
watch: {
// Avoid caching a temporarily empty module while an editor writes a file.
awaitWriteFinish: { stabilityThreshold: 200, pollInterval: 50 },
},
},
});