first commit

This commit is contained in:
yuantao
2026-04-14 11:31:58 +08:00
commit 85574798f2
10 changed files with 3132 additions and 0 deletions

17
vite.config.js Normal file
View File

@@ -0,0 +1,17 @@
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
import path from 'path';
export default defineConfig({
plugins: [vue()],
base: './',
build: {
outDir: 'dist',
emptyOutDir: true
},
resolve: {
alias: {
'@': path.resolve(__dirname, 'src')
}
}
});