We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fe3448 commit 79e4ba4Copy full SHA for 79e4ba4
packages/@vue/cli-service/lib/commands/serve.js
@@ -164,7 +164,9 @@ module.exports = (api, options) => {
164
api.service.devServerConfigFns.forEach(fn => fn(app, server))
165
// apply in project middlewares
166
projectDevServerOptions.before && projectDevServerOptions.before(app, server)
167
- }
+ },
168
+ // avoid opening browser
169
+ open: false
170
}))
171
172
;['SIGINT', 'SIGTERM'].forEach(signal => {
0 commit comments