feat: implement full arch design dashboard #1

Open
openclaw wants to merge 38 commits from feat/full-implementation into main
3 changed files with 9 additions and 1 deletions
Showing only changes of commit 75e053c454 - Show all commits

2
.gitignore vendored
View File

@ -2,3 +2,5 @@ __pycache__/
*.pyc
*.pyo
.venv/
node_modules/
dist/

View File

@ -5,7 +5,7 @@
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"strict": true,
"noEmit": true,
"composite": true,
"skipLibCheck": true
},
"include": ["vite.config.ts"]

View File

@ -1,8 +1,14 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { fileURLToPath, URL } from 'node:url'
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
},
},
server: {
proxy: {
'/api': {