Files
jellomator/vite.config.ts
Space-Banane 3991a01ec7
All checks were successful
docker / build-and-push (push) Successful in 49s
Build Jellomator MVP
2026-05-20 20:36:28 +02:00

17 lines
324 B
TypeScript

import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import path from 'node:path';
export default defineConfig({
plugins: [react()],
build: {
outDir: 'frontend/dist',
emptyOutDir: true,
},
resolve: {
alias: {
'@': path.resolve(__dirname, 'frontend/src'),
},
},
});