We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16358a5 commit 64492f2Copy full SHA for 64492f2
‎src/ts/server.ts
@@ -25,7 +25,7 @@ export class Server {
25
this.express = express();
26
this.express.use(bodyParser.raw());
27
this.express.use(bodyParser.text({type: "*/*"}));
28
- this.express.use(serveStatic(this.paths.static))
+ this.express.use(this.netlifyConfig.build.base, serveStatic(this.paths.static))
29
this.routeLambdas();
30
this.routeRedirects();
31
}
0 commit comments