chore(config): updated config files

This commit is contained in:
2026-04-12 01:00:02 +02:00
parent 14dfa97cc5
commit d10283c183
6 changed files with 26 additions and 3 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
import { VitePWA } from 'vite-plugin-pwa';
import path from 'path';
import { fileURLToPath } from 'node:url';
export default defineConfig({
server: { port: 5123, open: false },
@@ -14,7 +14,7 @@ export default defineConfig({
},
resolve: {
alias: {
'@': path.resolve(__dirname, 'src')
'@': fileURLToPath(new URL('./src', import.meta.url))
}
},
plugins: [