17 lines
281 B
TypeScript
17 lines
281 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
build: {
|
|
rolldownOptions: {
|
|
checks: {
|
|
pluginTimings: false,
|
|
},
|
|
},
|
|
},
|
|
server: {
|
|
middlewareMode: false,
|
|
},
|
|
});
|