// --files path is relative to the project (directory) where the command is run browser-sync start --server --files "css/*.css, *.html"
// If your file hierarchy is relatively deep, you may consider using ** (indicating any directory) to match any .css or .html file in any directory. browser-sync start --server --files "**/*.css, **/*.html"
// --files path is relative to the project (directory) where the command is run
browser-sync start --server --files "css/*.css, *.html"
// If your file hierarchy is relatively deep, you may consider using ** (indicating any directory) to match any .css or .html file in any directory.
browser-sync start --server --files "**/*.css, **/*.html"