Skip to content

v0.7.4

Choose a tag to compare

@JeffreyWay JeffreyWay released this 09 Feb 20:40

Additions

  • Added native BrowserSync support.
mix.browserSync('my-site.dev');

// or

mix.browserSync({
    proxy: 'my-site.dev',
    files: ['path/to/files/to/watch/**/*.js'] // defaults to Laravel-specific watchers
    port: 3000
});
  • Added Webpack support for recognizing HTML files c2403e7
  • Added an opt-in option to extract styling declared in your .vue files. e38f1f1
mix.options({ extractVueStyles: true });

Fixes

  • Mix will no longer fail if the source file you pass to mix.combine() does not exist (yet). 036b76d