Skip to content

Commit

Permalink
💫 updated to use base prop from context #1
Browse files Browse the repository at this point in the history
  • Loading branch information
8eecf0d2 committed Oct 15, 2018
1 parent 16358a5 commit 64492f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ts/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export class Server {
this.express = express();
this.express.use(bodyParser.raw());
this.express.use(bodyParser.text({type: "*/*"}));
this.express.use(serveStatic(this.paths.static))
this.express.use(this.netlifyConfig.build.base, serveStatic(this.paths.static))
this.routeLambdas();
this.routeRedirects();
}
Expand Down

0 comments on commit 64492f2

Please sign in to comment.