Files
Web_BLV_OA_Exam_Prod/vite.config.ts

29 lines
584 B
TypeScript
Raw Normal View History

import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import path from 'path';
export default defineConfig({
plugins: [react()],
// root: 'src', // Removed correct root configuration
build: {
outDir: 'dist', // Adjusted outDir relative to root
emptyOutDir: true,
},
server: {
port: 5173,
proxy: {
'/api': {
target: 'http://localhost:3000',
changeOrigin: true,
},
},
},
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
define: {
global: 'globalThis',
},
});