Initial WallMuse project

This commit is contained in:
fenglee
2026-05-09 09:12:41 +00:00
commit 3ea7d29827
91 changed files with 13136 additions and 0 deletions

15
apps/admin/vite.config.ts Executable file
View File

@@ -0,0 +1,15 @@
import react from "@vitejs/plugin-react";
import { defineConfig } from "vite";
export default defineConfig({
plugins: [react()],
server: {
port: 3200,
proxy: {
"/api": {
target: process.env.WALLMUSE_API_BASE_URL ?? "http://127.0.0.1:4000",
changeOrigin: true
}
}
}
});