zakscode/vite.config.ts

17 lines
315 B
TypeScript
Raw Normal View History

2024-01-03 23:49:28 -05:00
import {defineConfig} from 'vite';
2024-01-04 19:56:46 -05:00
import {fileURLToPath, URL} from 'node:url';
import vue from '@vitejs/plugin-vue';
2024-01-03 23:49:28 -05:00
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
2024-01-04 19:56:46 -05:00
},
envPrefix: 'APP',
2024-01-03 23:49:28 -05:00
});