Files
spaceshell/app/vite.config.ts
T
2026-06-09 20:22:46 +07:00

9 lines
202 B
TypeScript

import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
clearScreen: false,
server: { port: 1420, strictPort: true },
});