chore(ui): 目录结构调整

This commit is contained in:
廖彦棋
2024-03-06 09:32:47 +08:00
parent 725adaa7d0
commit a335b965d0
31 changed files with 3 additions and 3 deletions

View File

@@ -0,0 +1,18 @@
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
vueJsx(),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
})