9 lines
251 B
TypeScript
9 lines
251 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
clearScreen: false,
|
|
server: { port: 1420, strictPort: true, host: "127.0.0.1" },
|
|
build: { target: "es2022" },
|
|
});
|