Created
October 26, 2015 15:57
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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