Skip to content

Commit

Permalink
fix proxy.conf.json due to vite change
Browse files Browse the repository at this point in the history
  • Loading branch information
EverettSummer committed Jul 14, 2024
1 parent 73e6105 commit 7dc61bd
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions proxy.conf.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"/api/*": {
"target": "http://localhost:5000",
"/api/**": {
"target": "http://127.0.0.1:5000",
"secure": false
},
"/pic/*": {
"target": "http://localhost:8000",
"/pic/**": {
"target": "http://127.0.0.1:8000",
"secure": false
},
"/video/*": {
"target": "http://localhost:8000",
"/video/**": {
"target": "http://127.0.0.1:8000",
"secure": false
},
"/rt-log": {
"target": "http://localhost:8083/rt-log/",
"target": "http://127.0.0.1:8083/rt-log/",
"secure": false,
"changeOrigin": true,
"ws": true
Expand Down

0 comments on commit 7dc61bd

Please sign in to comment.