Skip to content

Instantly share code, notes, and snippets.

@bstro
Created October 5, 2014 04:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bstro/69ad2305939a20b3e413 to your computer and use it in GitHub Desktop.
Save bstro/69ad2305939a20b3e413 to your computer and use it in GitHub Desktop.
var webpack = require('webpack');
var WebpackDevServer = require('webpack-dev-server');
var config = require('./webpack.config');
new WebpackDevServer(webpack(config), {
publicPath: config.output.publicPath,
hot: true
}).listen(3000, 'localhost', function (err, result) {
if (err) {
console.log(err);
}
console.log('Listening at localhost:3000');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment