Vite migration

This commit is contained in:
2022-05-06 10:24:39 +00:00
parent e4a9bfec3c
commit e57e664cd2
18 changed files with 3947 additions and 12529 deletions

17
vite.config.js Normal file
View File

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