mIGRATED TO VUE

This commit is contained in:
Andrew
2023-01-30 16:58:48 +00:00
parent f53b7238c4
commit 1ec6fbd05e
29 changed files with 1739 additions and 1015 deletions

View File

@ -1,5 +1,14 @@
export default {
build: {
sourcemap: true,
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))
}
}
}
})