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

This commit is contained in:
2026-08-21 20:55:26 +00:00
parent 18f294629f
commit 68d5fa44a9
+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,
},
});