new BrowserSyncPlugin({ host: 'localhost', port: 3001, proxy: 'http://localhost:8081/', files: [{ match: [ '**/*.hbs' ], fn: function(event, file) { if (event === "change") { const bs = require('browser-sync').get('bs-webpack-plugin'); bs.reload(); } } }] }, { reload: false })