server.ts: Conf.localPort -> Conf.port

This commit is contained in:
Alex Gleason 2024-04-24 16:26:56 +00:00
parent 58b034e169
commit 953295c534
1 changed files with 1 additions and 1 deletions

View File

@ -3,4 +3,4 @@ import '@/sentry.ts';
import app from '@/app.ts';
import { Conf } from '@/config.ts';
Deno.serve({ port: Conf.localPort }, app.fetch);
Deno.serve({ port: Conf.port }, app.fetch);