bake build infra: vite.config.ts (deterministic /ship)

This commit is contained in:
2026-08-21 20:41:07 +00:00
parent bb990079b4
commit b7d9cd767d
+16
View File
@@ -0,0 +1,16 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react-swc";
import path from "path";
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
server: {
port: 5173,
host: true,
},
});