We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d95f3df commit d887270Copy full SHA for d887270
app.ts
@@ -26,7 +26,8 @@ export async function createApp(): Promise<[express.Application, Context]> {
26
src: path.join(__dirname, "public"),
27
dest: path.join(__dirname, "public"),
28
indentedSyntax: true, // true = .sass and false = .scss
29
- sourceMap: true
+ sourceMap: true,
30
+ prefix: "/faucet"
31
}));
32
app.use("/faucet", express.static(path.join(__dirname, "public")));
33
morganBody(app);
0 commit comments