Initial commit: video aggregator with quark/115/wopan drivers

This commit is contained in:
nianzhibai
2026-05-10 17:07:20 +08:00
commit 87866858b8
2028 changed files with 5803208 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import path from "node:path";
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
"@": path.resolve(__dirname, "src"),
},
},
server: {
port: 5173,
proxy: {
"/api": "http://localhost:8080",
"/p": "http://localhost:8080",
"/admin/api": "http://localhost:8080",
},
},
});