58ce6cb67b
仓库提交至星火社区作品集 Signed-off-by: Riceneeder <86492950+Riceneeder@users.noreply.github.com>
36 lines
910 B
JavaScript
36 lines
910 B
JavaScript
|
|
/**
|
|
* Setup and run the development server for Hot-Module-Replacement
|
|
* https://webpack.github.io/docs/hot-module-replacement-with-webpack.html
|
|
* @flow
|
|
*/
|
|
import express from 'express';
|
|
import webpack from 'webpack';
|
|
import webpackDevMiddleware from 'webpack-dev-middleware';
|
|
import webpackHotMiddleware from 'webpack-hot-middleware';
|
|
|
|
import config from '../config';
|
|
import webpackConfig from '../config/webpack.config.dev';
|
|
|
|
const app = new express();
|
|
const compiler = webpack(webpackConfig);
|
|
|
|
app.use(
|
|
webpackDevMiddleware(compiler, {
|
|
publicPath: webpackConfig.output.publicPath,
|
|
stats: {
|
|
colors: true
|
|
},
|
|
})
|
|
);
|
|
app.use(webpackHotMiddleware(compiler));
|
|
|
|
app.listen(config.server.port, config.server.host, err => {
|
|
if (err) {
|
|
console.error(err);
|
|
return;
|
|
}
|
|
|
|
console.log(`Server is running with port ${config.server.port} 👏`);
|
|
});
|