snowballtools-base/packages/frontend/vite.config.ts

19 lines
368 B
TypeScript
Raw Normal View History

2024-04-24 17:18:59 +00:00
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
2024-04-11 21:40:22 +00:00
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
2024-04-24 17:18:59 +00:00
utils: '/src/utils',
assets: '/src/assets',
context: '/src/context',
components: '/src/components',
2024-04-11 21:40:22 +00:00
},
},
2024-04-24 17:18:18 +00:00
define: {
2024-04-25 00:02:52 +00:00
'process.env': {},
2024-04-24 17:18:18 +00:00
},
2024-04-11 21:40:22 +00:00
});