Last active
August 30, 2018 20:22
-
-
Save jpwain/0185b68a47d6aeee334663c8c3716c91 to your computer and use it in GitHub Desktop.
Browsersync syntax
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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