Is it possible to setup BrowserSync to watch all files inside a folder, including inside sub-folders? I don't want to have to edit the config file every time I change the content structure (which in my projects happens frequently).
using **/* will watch all files in all sub directories.
/* This will watch all CSS files in all sub-dirs */
css/**/*.css
Just be careful that your patterns don't match too many files or you may get an error
Most helpful comment
using
**/*will watch all files in all sub directories.Just be careful that your patterns don't match too many files or you may get an error