For example, A Wordpress site that you access on your mobile over wifi - if it makes an ajax request that contains any kind of absolute URL, they are missed by the link-rewriting and results in 404's.
Suffering with this too :+1:
browserSync({
server: "test/fixtures",
snippetOptions: {
whitelist: ["/wp-admin/admin-ajax.php"], // whitelist checked first
blacklist: ["/wp-admin/**"]
}
});