Skip to content

Instantly share code, notes, and snippets.

@lamosty
Created October 26, 2015 15:57
Show Gist options
  • Save lamosty/ab524d4987c86e2b15c1 to your computer and use it in GitHub Desktop.
Save lamosty/ab524d4987c86e2b15c1 to your computer and use it in GitHub Desktop.
server.js file from the Lexi WordPress theme: https://github.com/lamosty/lexi/blob/master/server.js
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,
historyApiFallback: true,
stats: {
colors: true
}
}).listen(3000, 'localhost', function(err) {
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