first own code, user can login/logout

This commit is contained in:
2022-10-08 12:46:28 +02:00
parent 1a7ecfad8f
commit 38958d20dd
25 changed files with 622 additions and 474 deletions

View File

@@ -8,7 +8,9 @@ export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
'@': fileURLToPath(new URL('./src', import.meta.url)),
'@components': fileURLToPath(new URL('./src/components', import.meta.url)),
'@api': fileURLToPath(new URL('./src/api', import.meta.url))
}
}
})