Files
ThreatHunt/frontend/vite.config.js
mblanke 99d3fbc2b3 post CLAUDE updates
had CLAUDE AI made suggestions and edits to code.
added all route and moves some requirements around.
2025-06-17 06:13:59 -04:00

25 lines
535 B
JavaScript

import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import tailwindcss from "@tailwindcss/vite";
export default defineConfig({
plugins: [
react(),
tailwindcss(),
],
server: {
port: 3000,
proxy: {
'/api': {
target: 'http://localhost:5000',
changeOrigin: true,
secure: false
}
}
},
build: {
outDir: 'dist',
assetsDir: 'assets',
sourcemap: true
}
});