upgrading app to vue 3

This commit is contained in:
Chris
2024-08-30 13:20:53 +01:00
parent 38dbfaf39e
commit 6d168288af
32 changed files with 1704 additions and 19744 deletions

16
quiz-app/vite.config.js Normal file
View File

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