-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvite.config.js
61 lines (57 loc) · 2.22 KB
/
vite.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import tailwindcss from '@tailwindcss/vite';
const baseUrl = process.env.BASE_URL || 'https://localhost:1215/';
export default defineConfig({
plugins: [react(), tailwindcss()],
server: {
proxy: {
'/auth': {
target: baseUrl,
changeOrigin: true,
secure: false,
},
'/daemon/status': {
target: baseUrl,
changeOrigin: true,
secure: false,
},
'/node/name': {
target: baseUrl,
changeOrigin: true,
secure: false,
},
'/object/path': {
target: baseUrl,
changeOrigin: true,
secure: false,
},
'/sse': {
target: baseUrl,
changeOrigin: true,
secure: false,
rewrite: (path) => path.replace(/^\/sse/, '/node/name/localhost/daemon/event'), // Réécriture comme dans setupProxy
configure: (proxy, options) => {
proxy.on('proxyReq', (proxyReq, req) => {
console.log('🔄 Proxy: Sending SSE request to backend...');
const urlParams = new URLSearchParams(req.url.split('?')[1]);
const authToken = urlParams.get('token');
console.log('authToken:', authToken);
if (authToken) {
proxyReq.setHeader('Authorization', `Bearer ${authToken}`);
} else {
console.error('❌ No authentication token found!');
}
proxyReq.setHeader('Content-Type', 'text/event-stream');
});
proxy.on('proxyRes', (proxyRes) => {
console.log('📥 Proxy: Received SSE response:', proxyRes.statusCode);
});
proxy.on('error', (err) => {
console.error('❌ Proxy Error:', err);
});
},
},
},
},
});