Fix Browsersync reloading on CSS changes

This commit is contained in:
Oliver Davies 2019-05-08 14:50:53 +01:00
parent 026e8e11d2
commit 584aa32a2a

View file

@ -11,6 +11,11 @@ mix.disableNotifications()
open: false,
files: [
'**/*.php',
'assets/css/**/*.css'
],
{
match: 'style.css',
fn: function (event, file) {
this.reload()
}
}
]
})