管理端web端提交

This commit is contained in:
aixianling
2023-01-03 11:45:38 +08:00
parent d1f2a42f1c
commit bf37c7ef10
23 changed files with 926 additions and 0 deletions

10
web/vite.config.js Normal file
View File

@@ -0,0 +1,10 @@
import {defineConfig} from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
resolve: {
extensions: ['.vue', '.mjs', '.js', '.ts', '.jsx', '.tsx', '.json']
},
plugins: [vue()]
})