2026-05-14 21:41:34 +02:00
|
|
|
import * as path from 'path';
|
2026-01-01 17:35:58 +01:00
|
|
|
|
2026-05-14 22:01:56 +02:00
|
|
|
import vue from '@vitejs/plugin-vue';
|
|
|
|
|
import { defineConfig } from 'vite';
|
|
|
|
|
|
2026-01-01 17:35:58 +01:00
|
|
|
// https://vite.dev/config/
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
plugins: [vue()],
|
2026-05-14 21:41:34 +02:00
|
|
|
resolve: {
|
|
|
|
|
alias: {
|
|
|
|
|
'@': path.resolve(__dirname, './src'),
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
});
|