Add base files

This commit is contained in:
2023-01-13 22:01:37 +01:00
parent 9d5d2f7ed4
commit 0d7c5309a2
16 changed files with 3683 additions and 8 deletions

15
vite.config.ts Normal file
View File

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