September 2017
Intermediate to advanced
450 pages
11h 24m
English
Let's perform the following steps to add BrowserSync integration to our application's WebPack build process:
...const BrowserSyncPlugin = require('browser-sync-webpack-plugin');...module.exports = { ... plugins: [ ... new BrowserSyncPlugin({ host: 'localhost', port: 3100, proxy: 'http://localhost:3000/' }) ]};
npm run watch:build
Read now
Unlock full access