first commit

This commit is contained in:
2026-04-05 10:23:02 +08:00
commit 8824aa1fb1
48 changed files with 12943 additions and 0 deletions

16
frontend/vite.config.ts Normal file
View File

@@ -0,0 +1,16 @@
import { defineConfig } from "vite";
import preact from "@preact/preset-vite";
export default defineConfig({
plugins: [preact()],
server: {
host: "127.0.0.1",
port: 8173,
proxy: {
"/api": {
target: "http://127.0.0.1:8318",
changeOrigin: true,
},
},
},
});