replace ElementPlus to PrimeVue, update TheWelcome
Main daploy / deploy (push) Successful in 33s

This commit is contained in:
2024-11-14 15:26:44 +02:00
parent c17f39298c
commit 660f7e18d9
15 changed files with 1051 additions and 581 deletions
+7 -2
View File
@@ -3,19 +3,24 @@ import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueDevTools from 'vite-plugin-vue-devtools'
import Components from 'unplugin-vue-components/vite'
import { PrimeVueResolver } from '@primevue/auto-import-resolver'
// https://vite.dev/config/
export default defineConfig({
plugins: [
vue(),
Components({
resolvers: [PrimeVueResolver()],
}),
vueDevTools(),
],
define: {
global: 'window' // it is needed for PouchDB
global: 'window', // it is needed for PouchDB
},
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
'@': fileURLToPath(new URL('./src', import.meta.url)),
},
},
})