Skip to content

Commit

Permalink
Merge 9edfc3c into be94d3e
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert-W committed Oct 22, 2018
2 parents be94d3e + 9edfc3c commit dd396d0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"license": "MIT",
"private": false,
"scripts": {
"start": "node src/index;",
"nodemon": "node src/scripts/nodemon;",
"start": "node src/index",
"nodemon": "node src/scripts/nodemon",
"test": "node src/scripts/test --env=jsdom",
"lint": "eslint \"src/**/*.js\""
},
Expand Down
2 changes: 1 addition & 1 deletion src/utils/router.utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ function configureRoutes (server, options = {}) {

server.app.use(
// Path for this graphql endpoint
path.join(instance_path, '([\$])graphql'),
path.posix.join(instance_path, '([\$])graphql'),
// Add our validation middlware
authenticationMiddleware(server),
// middleware wrapper for Graphql Express
Expand Down

0 comments on commit dd396d0

Please sign in to comment.