mirror of
https://github.com/zhigang1992/create-react-app.git
synced 2026-01-12 22:46:30 +08:00
30 lines
694 B
JavaScript
30 lines
694 B
JavaScript
var webpack = require('webpack');
|
|
var WebpackDevServer = require('webpack-dev-server');
|
|
var config = require('./webpack.config.dev');
|
|
|
|
new WebpackDevServer(webpack(config), {
|
|
publicPath: config.output.publicPath,
|
|
historyApiFallback: true,
|
|
stats: {
|
|
hash: false,
|
|
version: false,
|
|
timings: false,
|
|
assets: false,
|
|
chunks: false,
|
|
modules: false,
|
|
reasons: false,
|
|
children: false,
|
|
source: false,
|
|
publicPath: false,
|
|
colors: true,
|
|
errors: true,
|
|
errorDetails: true,
|
|
warnings: true,
|
|
}
|
|
}).listen(3000, 'localhost', function (err, result) {
|
|
if (err) {
|
|
return console.log(err);
|
|
}
|
|
console.log('Listening at http://localhost:3000/');
|
|
});
|