- Change Vite proxy pattern from /api to /api/ so /api-docs client route is not captured and proxied to the backend - Fix SwaggerUIBundle init: remove empty presets/layout overrides that crashed the internal persistConfigs function - Use correct CSS import (swagger-ui.css instead of index.css) - Add requestInterceptor to auto-attach JWT token to Try-it-out calls - Add swagger-ui-bundle to optimizeDeps.include for reliable loading - Remove unused swagger-ui-dist.d.ts type declarations Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
31 lines
736 B
TypeScript
31 lines
736 B
TypeScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
|
|
// Use VITE_API_TARGET to proxy to a remote server, e.g.:
|
|
// VITE_API_TARGET=https://api.cameleer.siegeln.net npm run dev
|
|
const apiTarget = process.env.VITE_API_TARGET || 'http://localhost:8081';
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: {
|
|
proxy: {
|
|
'/api/': {
|
|
target: apiTarget,
|
|
changeOrigin: true,
|
|
secure: false,
|
|
configure: (proxy) => {
|
|
proxy.on('proxyReq', (proxyReq) => {
|
|
proxyReq.removeHeader('origin');
|
|
});
|
|
},
|
|
},
|
|
},
|
|
},
|
|
optimizeDeps: {
|
|
include: ['swagger-ui-dist/swagger-ui-bundle'],
|
|
},
|
|
build: {
|
|
outDir: 'dist',
|
|
},
|
|
});
|