Skip to content

Instantly share code, notes, and snippets.

@jpwain
Last active August 30, 2018 20:22
Show Gist options
  • Save jpwain/0185b68a47d6aeee334663c8c3716c91 to your computer and use it in GitHub Desktop.
Save jpwain/0185b68a47d6aeee334663c8c3716c91 to your computer and use it in GitHub Desktop.
Browsersync syntax
# some recent change seems to make whatever I was using previously not work at all
browser-sync --index "./index.html" --server --files "./*.*"
# OR
browser-sync --index "index.html" --server --no-notify --files "*.*"
# --no-notify prevents that banner from appearing
# whatever, now this works:
browser-sync start -s -f . --no-notify --host $LOCAL_IP --port 9000 --index "base.html"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment