Skip to content

Uint8Array not defined when loading page on IE9 #1198

@caneta

Description

@caneta

Issue details

When I run a page with browserSync on IE9, I get the error "Uint8Array not defined" on file browser-sync-client.2.15.0.js. No problems with Firefox and Chrome

Steps to reproduce/test case

Run browserSync with Gulp-3.9.1. and load the page on IE9

Please specify which version of Browsersync, node and npm you're running

  • Browsersync [2.15.0]
  • Node [6.2.1]
  • Npm [3.9.5]

Affected platforms

  • linux
  • windows
  • OS X
  • freebsd
  • solaris
  • other (please specify which)

Browsersync use-case

  • API
  • Gulp
  • Grunt
  • CLI

for all other use-cases, (gulp, grunt etc), please show us exactly how you're using Browsersync

gulp.task('serve', ['dist'], () => {

   browserSync.init({
     server: {
       baseDir: 'dist/'
     },
     open: false,
     notify: false
   });

   gulp.watch('src/scss/*.scss', ['dist:css']).on('change', browserSync.reload);
   gulp.watch('src/html/*.html', ['dist:html']).on('change', browserSync.reload);
   gulp.watch('src/js/*.js', ['dist:js']).on('change', browserSync.reload);
 });

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions