refactor: refreshed packages and code; adjusted settings and updated config files

This commit is contained in:
2026-04-12 15:11:21 +02:00
parent 0ec8eed404
commit d0f2538659
32 changed files with 1019 additions and 5954 deletions
+17 -5
View File
@@ -1,7 +1,19 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { fileURLToPath, URL } from 'node:url';
// https://vitejs.dev/config/
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
// https://vite.dev/config/
export default defineConfig({
plugins: [vue()]
})
plugins: [vue()],
preview: {
port: 4000
},
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
});