frontend-apps/users-manage/vite.config.js

29 lines
1.2 KiB
JavaScript

import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import {fileURLToPath, URL} from 'node:url';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
'@': fileURLToPath(new URL('/src', import.meta.url)),
'@store': fileURLToPath(new URL('/src/store', import.meta.url)),
'@cmp': fileURLToPath(new URL('/src/components', import.meta.url)),
'@atoms': fileURLToPath(new URL('./src/components/1_atoms', import.meta.url)),
'@helpers': fileURLToPath(new URL('./src/helpers', import.meta.url)),
'@molecules': fileURLToPath(new URL('./src/components/2_molecules', import.meta.url)),
'@organisms': fileURLToPath(new URL('./src/components/3_organisms', import.meta.url)),
'@pages': fileURLToPath(new URL('./src/components/5_pages', import.meta.url)),
'@router': fileURLToPath(new URL('/src/router/index.js', import.meta.url)),
'@adapters': fileURLToPath(new URL('/src/adapters', import.meta.url)),
'@services': fileURLToPath(new URL('/src/services', import.meta.url)),
'@useCases': fileURLToPath(new URL('/src/useCases', import.meta.url)),
}
},
test: {
globals:true,
environment: 'happy-dom',
}
})