From 68d5fa44a98dcca7a62b49873e1b290f8c240096 Mon Sep 17 00:00:00 2001 From: jyswee Date: Fri, 21 Aug 2026 20:55:26 +0000 Subject: [PATCH] bake build infra: vite.config.ts (deterministic /ship for forks) --- vite.config.ts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 vite.config.ts diff --git a/vite.config.ts b/vite.config.ts new file mode 100644 index 0000000..e9259a5 --- /dev/null +++ b/vite.config.ts @@ -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, + }, +}); \ No newline at end of file