BrowserSync / gulp-browser-sync

How to use the Browsersync module with gulp.
http://browsersync.io
384 stars 27 forks source link

Doesn't load with IE conditionals on body tag #49

Closed jmuyskens closed 9 years ago

jmuyskens commented 9 years ago

We have this in our template:

<!--[if lt IE 7]><body class="ie6"><![endif]-->
<!--[if IE 7]><body class="ie7"><![endif]-->
<!--[if IE 8]><body class="ie8"><![endif]-->
<!--[if gt IE 8]><!--><body><!--<![endif]-->

and BrowserSync doesn't load.

shinnn commented 9 years ago

https://github.com/BrowserSync/gulp-browser-sync/issues/47#issuecomment-89830275 and https://github.com/BrowserSync/browser-sync/issues/555#issuecomment-89846567

As @shakyShane said,

provide a custom regex http://www.browsersync.io/docs/options/#option-snippetOptions

Thanks.