WIP; Vue3 project tree

This commit is contained in:
2023-02-28 13:57:08 +01:00
parent a7b2dbf4bc
commit 3b428f52af
27 changed files with 2486 additions and 10 deletions

14
vite.config.js Normal file
View File

@ -0,0 +1,14 @@
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))
}
}
})