feat: init

This commit is contained in:
dreamhunter2333
2023-08-16 11:13:26 +08:00
commit bd08a85016
21 changed files with 2910 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
build: {
outDir: '../dist',
},
plugins: [
vue(),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
})