balibabu
commited on
Commit
·
996fe99
1
Parent(s):
826a9e4
Fix: The edit box for the headers parameter of the invoke operator is always loading. #4265 (#4266)
Browse files### What problem does this PR solve?
Fix: The edit box for the headers parameter of the invoke operator is
always loading. #4265
### Type of change
- [x] Bug Fix (non-breaking change which fixes an issue)
- web/.umirc.ts +4 -1
web/.umirc.ts
CHANGED
@@ -30,7 +30,10 @@ export default defineConfig({
|
|
30 |
},
|
31 |
},
|
32 |
devtool: 'source-map',
|
33 |
-
copy: [
|
|
|
|
|
|
|
34 |
proxy: [
|
35 |
{
|
36 |
context: ['/api', '/v1'],
|
|
|
30 |
},
|
31 |
},
|
32 |
devtool: 'source-map',
|
33 |
+
copy: [
|
34 |
+
{ from: 'src/conf.json', to: 'dist/conf.json' },
|
35 |
+
{ from: 'node_modules/monaco-editor/min/vs/', to: 'dist/vs/' },
|
36 |
+
],
|
37 |
proxy: [
|
38 |
{
|
39 |
context: ['/api', '/v1'],
|