salix-front/vite.config.js

15 lines
322 B
JavaScript
Raw Normal View History

2024-04-16 12:12:02 +00:00
import { fileURLToPath, URL } from 'url';
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
2024-05-28 09:38:09 +00:00
src: fileURLToPath(new URL('./src', import.meta.url)),
2024-04-16 12:12:02 +00:00
},
},
});