Skip to content

Commit b15f228

Browse files
albertodeagoAlberto De Agostinikodiakhq[bot]
authoredJan 21, 2022
feat(dev): document how to disable browser auto launch (#4106)
* docs(de): document how to avoid browser to auto start * fix: remove wrong docs Co-authored-by: Alberto De Agostini <alberto.deagostini@adevinta.com> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
1 parent d0e93d6 commit b15f228

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed
 

‎docs/commands/dev.md

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ netlify dev
4242
netlify dev
4343
netlify dev -d public
4444
netlify dev -c "hugo server -w" --targetPort 1313
45+
BROWSER=none netlify dev # disable browser auto opening
4546
```
4647

4748
---

‎docs/netlify-dev.md

+6
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,12 @@ EXAMPLES
8585
$ netlify dev -c "hugo server -w" --targetPort 1313
8686
```
8787
88+
The command will automatically open your preferred browser to serve the application. You can customize this behaviour by using the `BROWSER` environment variable:
89+
90+
```bash
91+
$ BROWSER=none netlify dev # this will disable the auto opening of the browser
92+
```
93+
8894
## Live Share
8995
9096
To share your ongoing dev session with a coworker, just run Netlify Dev with a `--live` flag:

‎src/commands/dev/dev.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,12 @@ const createDevCommand = (program) => {
335335
'specify the path to a local GeoIP location database in MMDB format',
336336
).hideHelp(),
337337
)
338-
.addExamples(['netlify dev', 'netlify dev -d public', 'netlify dev -c "hugo server -w" --targetPort 1313'])
338+
.addExamples([
339+
'netlify dev',
340+
'netlify dev -d public',
341+
'netlify dev -c "hugo server -w" --targetPort 1313',
342+
'BROWSER=none netlify dev # disable browser auto opening',
343+
])
339344
.action(dev)
340345
}
341346
module.exports = { createDevCommand }

0 commit comments

Comments
 (0)