Skip to content

Commit 64492f2

Browse files
committed
💫 updated to use base prop from context #1
1 parent 16358a5 commit 64492f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎src/ts/server.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export class Server {
2525
this.express = express();
2626
this.express.use(bodyParser.raw());
2727
this.express.use(bodyParser.text({type: "*/*"}));
28-
this.express.use(serveStatic(this.paths.static))
28+
this.express.use(this.netlifyConfig.build.base, serveStatic(this.paths.static))
2929
this.routeLambdas();
3030
this.routeRedirects();
3131
}

0 commit comments

Comments
 (0)