Skip to content

Commit

Permalink
[autofix.ci] apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored and mandarini committed Nov 6, 2023
1 parent 440f79b commit 997eb5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commands/dev.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const command = defineCommand({
// Fork nuxt dev process
const devProxy = await _createDevProxy(nuxtOptions, listenOptions)
await _startSubprocess(devProxy, ctx.rawArgs)
return devProxy?.listener?.url;
return devProxy?.listener?.url
} else {
// Directly start nuxt dev
const { createNuxtDevServer } = await import('../utils/dev')
Expand All @@ -86,7 +86,7 @@ const command = defineCommand({
listenOptions,
)
await devServer.init()
return devServer?.listener?.url;
return devServer?.listener?.url
}
},
})
Expand Down

0 comments on commit 997eb5d

Please sign in to comment.