summaryrefslogtreecommitdiff
path: root/server/main.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/main.ts')
-rw-r--r--server/main.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/main.ts b/server/main.ts
index 486bb86..b4f319b 100644
--- a/server/main.ts
+++ b/server/main.ts
@@ -21,7 +21,7 @@ async function bootstrap() {
app.use(cookieParser());
app.useStaticAssets(join(__dirname, '..', 'static'));
- app.setBaseViewsDir(join(__dirname, '../', 'views'));
+ app.setBaseViewsDir(join(__dirname, '..', 'views'));
app.setViewEngine('hbs');
await app.listen(process.env.PORT);
}