Browsersync infinite reload on url change in css

Browsersync goes on a infinite reload loop when I change a background-image: url(…/images/myimage.jpg) in css. I’m not experiencing any issue with all the other css properties, it seems to be related only to the use of the url() function.

I’m using this config.json:

{
“entry”: {
“main”: [
“./scripts/main.js”,
“./styles/main.scss”
],
“customizer”: [
“./scripts/customizer.js”
]
},
“publicPath”: “/wp-content/themes/mytheme”,
“devUrl”: “http://mysite.local”,
“proxyUrl”: “http://localhost:3000”,
“cacheBusting”: “[name]_[hash:8]”,
“watch”: [
“app//*.php",
"config/
/.php",
"resources/views/**/
.php”
]
}

Any help/solution would be greatly appreciated :slight_smile: