mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
17 lines
450 B
JavaScript
17 lines
450 B
JavaScript
|
'use strict';
|
||
|
const webpack = require('webpack');
|
||
|
const WebpackDevServer = require('webpack-dev-server');
|
||
|
const config = require('./webpack.config');
|
||
|
|
||
|
new WebpackDevServer(webpack(config), {
|
||
|
colors: true,
|
||
|
publicPath: config.output.publicPath,
|
||
|
hot: true,
|
||
|
historyApiFallback: true,
|
||
|
}).listen(3000, 'localhost', (err) => {
|
||
|
if (err) {
|
||
|
return console.log(err);
|
||
|
}
|
||
|
console.log('Listening at http://localhost:3000/');
|
||
|
});
|