separate setup from main page for faster load

This commit is contained in:
2023-07-17 15:43:25 +02:00
parent b30a3226a5
commit 7f08269796
30 changed files with 2441 additions and 24 deletions

View File

@@ -0,0 +1,16 @@
import { fileURLToPath, URL } from 'node: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))
}
}
})