Browser-sync: Sub-folders

Created on 28 Feb 2014  路  1Comment  路  Source: BrowserSync/browser-sync

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).

Most helpful comment

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

>All comments

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

Was this page helpful?
0 / 5 - 0 ratings