Skip to content

Commit

Permalink
Add missing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
danjov committed Sep 22, 2022
1 parent 6804a54 commit 069d680
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/client/src/setupProxy.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ module.exports = function (app) {
createProxyMiddleware({
target: process.env.REACT_APP_PROXY_HOST_API_v1,
changeOrigin: true,
})
}),
);

app.use(
"/api/v2",
createProxyMiddleware({
target: process.env.REACT_APP_PROXY_HOST_API_v2,
changeOrigin: true,
})
}),
);
};

0 comments on commit 069d680

Please sign in to comment.