chore: hide listen message for dev

This commit is contained in:
Pooya Parsa 2020-12-07 21:49:37 +01:00
parent 28be995ef4
commit a05c806f85

View File

@ -87,7 +87,7 @@ export function createDevServer (sigmaContext: SigmaContext) {
// Listen
let listeners: Listener[] = []
const _listen = async (port) => {
const listener = await listen(app, { port })
const listener = await listen(app, { port, showURL: false, isProd: true })
listeners.push(listener)
return listener
}