mirror of https://github.com/fspc/workstand.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
404 B
16 lines
404 B
8 years ago
|
var webpack = require('webpack')
|
||
|
var WebpackDevServer = require('webpack-dev-server')
|
||
|
var config = require('./webpack.dev.config')
|
||
|
|
||
|
new WebpackDevServer(webpack(config), {
|
||
|
publicPath: config.output.publicPath,
|
||
|
hot: true,
|
||
|
inline: true,
|
||
|
historyApiFallback: true
|
||
|
}).listen(3000, '0.0.0.0', function (err, result) {
|
||
|
if (err) {
|
||
|
console.log(err)
|
||
|
}
|
||
|
|
||
|
console.log('Listening at 0.0.0.0:3000')
|
||
|
})
|