chore: fix netlify build failing

pull/136/head
Kia Ishii 5 years ago
parent e143df8976
commit 350b888e68

@ -8,7 +8,7 @@ export interface ServeOptions {
}
export async function serve(options: ServeOptions = {}) {
const port = options.port ?? 3000
const port = options.port !== undefined ? options.port : 3000
const site = await resolveConfig(options.root)
const app = new Koa()

Loading…
Cancel
Save