added login logic

This commit is contained in:
Sockenklaus
2021-10-20 01:22:42 +02:00
parent 2896902e12
commit 60618a5eee
10 changed files with 336 additions and 205 deletions

View File

@@ -1,7 +1,13 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import * as path from 'path'
// https://vitejs.dev/config/
export default defineConfig({
resolve: {
alias: {
'@': path.resolve(__dirname, './src')
},
},
plugins: [vue()]
})