- conversation-assistant: ML scam detection (NestJS + Python + Swift) - platform-admin: Admin dashboard frontend scaffold - portal: Creator portal frontend scaffold - service-registry: Registry agent requirements 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
19 lines
340 B
TypeScript
19 lines
340 B
TypeScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: {
|
|
port: 3200,
|
|
proxy: {
|
|
'/api': {
|
|
target: 'http://localhost:3100',
|
|
changeOrigin: true,
|
|
},
|
|
},
|
|
},
|
|
build: {
|
|
outDir: 'dist',
|
|
sourcemap: true,
|
|
},
|
|
});
|