This commit is contained in:
2025-07-13 16:45:40 +02:00
parent 550b1b936b
commit b492c0fc38
32 changed files with 6187 additions and 403 deletions

View File

@@ -1,12 +1,14 @@
import { defineConfig } from "vite";
import path from "path";
import { fileURLToPath, URL } from 'node:url';
const config = defineConfig({
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
}
'@': fileURLToPath(new URL('./src', import.meta.url)),
},
},
});
export default config;