chore: change path to GQL-API

This commit is contained in:
2020-01-17 12:44:19 +01:00
parent 4ba66cb103
commit 1e78b86a8a
3 changed files with 3 additions and 11 deletions
+2 -2
View File
@@ -23,9 +23,9 @@ if (config.dev) {
// Add graphql mocking middleware
//addGraphMiddleware(app);
app.use('/graph/', proxy('localhost:8081', {
app.use('/query/', proxy('localhost:6080', {
proxyReqPathResolver: function (req) {
return '/graph/';
return '/query';
}
}
)