Skip to content

Commit

Permalink
fix: Remove console.log statement in serveDynamic
Browse files Browse the repository at this point in the history
  • Loading branch information
pklaschka committed Jan 8, 2021
1 parent bdbd4c4 commit c87a4a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/serveDynamic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export async function serveDynamic(
const url =
config.baseUrl +
path.relative(config.outDir, absolutePath).replace(/\\/g, '/');
console.log(url);

const handler: RequestHandler = (req, res) => {
res.type(mimetype);
res.send(content);
Expand Down

0 comments on commit c87a4a1

Please sign in to comment.