Files
ComFi/vite.config.ts
MMrp89 8c770d43c8 feat: Update project dependencies and configuration
This commit updates the project's dependencies, including React, Recharts, and Lucide React, to their latest stable versions. It also introduces a `server.js` file to handle static file serving with Express for better production deployment. Additionally, TypeScript and Vite configurations have been refined for improved build performance and type safety.
2026-02-10 01:12:15 -03:00

16 lines
273 B
TypeScript

import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
define: {
'process.env': process.env
},
build: {
outDir: 'dist',
emptyOutDir: true,
}
});