I\'m using webpack-dev-server with this config:
import webpack from \'webpack\'; import autoprefixer from \'autoprefixer\'; import ExtractTextPlugin from \'extra
Run it in watch mode:
$ webpack-dev-server --watch
or in webpack.config.js:
webpack.config.js
devServer: { watchContentBase: true, }