Skip to content

Commit 60d86e1

Browse files
committed
chore: use different port for serve
1 parent c878e6d commit 60d86e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/node/serve/serve.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export interface ServeOptions {
88
}
99

1010
export async function serve(options: ServeOptions = {}) {
11-
const port = options.port !== undefined ? options.port : 3000
11+
const port = options.port !== undefined ? options.port : 5000
1212
const site = await resolveConfig(options.root)
1313

1414
const server = http.createServer(sirv(site.outDir, { dev: true, etag: true }))

0 commit comments

Comments
 (0)