Skip to content

Instantly share code, notes, and snippets.

@thiagobraga
Created November 20, 2019 14:22
Show Gist options
  • Save thiagobraga/8c602e592ad3f33f0cfbda32a9c6968b to your computer and use it in GitHub Desktop.
Save thiagobraga/8c602e592ad3f33f0cfbda32a9c6968b to your computer and use it in GitHub Desktop.
BrowserSync config in package.json
{
"browserSync": {
"https": {
"key": "./cert/localhost-key.pem",
"cert": "./cert/localhost.pem"
},
"files": [
"dist/project.{css,js}"
],
"logSnippet": false,
"ghostMode": false,
"notify": false,
"open": false,
"port": 3000,
"ui": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment