2026-05-14 20:24:41 +07:00
|
|
|
import { defineConfig } from "vite";
|
|
|
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
|
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
plugins: [react()],
|
2026-05-21 12:30:04 +00:00
|
|
|
build: {
|
|
|
|
|
rolldownOptions: {
|
|
|
|
|
checks: {
|
|
|
|
|
pluginTimings: false,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
2026-05-14 20:24:41 +07:00
|
|
|
server: {
|
|
|
|
|
middlewareMode: false,
|
|
|
|
|
},
|
|
|
|
|
});
|