We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ac2710 commit c2081c6Copy full SHA for c2081c6
ui/vite.config.ts
@@ -35,6 +35,11 @@ export default defineConfig(({ mode }) => {
35
changeOrigin: true,
36
rewrite: (path: string) => path.replace(ENV.VITE_BASE_PATH, '/'),
37
}
38
+ proxyConf['/schema'] = {
39
+ target: 'http://127.0.0.1:8080',
40
+ changeOrigin: true,
41
+ rewrite: (path: string) => path.replace(ENV.VITE_BASE_PATH, '/'),
42
+ }
43
proxyConf['/static'] = {
44
target: 'http://127.0.0.1:8080',
45
0 commit comments