初始化:静态菜单版 数据大屏管理系统,对接KLPL3数据库

This commit is contained in:
zuqijia
2026-05-15 18:18:51 +08:00
commit 39fed2c08c
58 changed files with 12751 additions and 0 deletions

32
vite.config.js Normal file
View File

@@ -0,0 +1,32 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { resolve } from 'path'
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
'@': resolve(__dirname, 'src')
}
},
server: {
proxy: {
'/api': {
target: 'http://localhost:3000',
changeOrigin: true
},
'/da': {
target: 'http://localhost:3000',
changeOrigin: true
},
'/pocket': {
target: 'http://localhost:3000',
changeOrigin: true
},
'/l2': {
target: 'http://localhost:3000',
changeOrigin: true
}
}
}
})