nakama/moderation/frontend/vite.config.js

27 lines
532 B
JavaScript
Raw Normal View History

2025-11-10 20:13:22 +00:00
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
server: {
port: 5174,
proxy: {
'/api': {
2025-12-08 23:42:32 +00:00
target: process.env.VITE_MODERATION_API_URL || 'http://localhost:3001',
2025-11-10 20:13:22 +00:00
changeOrigin: true
},
'/mod-chat': {
2025-12-08 23:42:32 +00:00
target: process.env.VITE_MODERATION_API_URL || 'http://localhost:3001',
2025-11-10 20:13:22 +00:00
changeOrigin: true,
ws: true
}
}
},
build: {
outDir: 'dist',
sourcemap: false
}
});
2025-11-20 20:50:14 +00:00