$ npm install webpack-logplugin -D
with this plugin,you can make your webpack output info whenever your compile is done.
//webpack.config.js
const LogPlugin = require('webpack-logplugin');
module.exports = {
plugins: [
new LogPlugin( () => {
console.log('Your app is running at http://localhost:3001')
})
]
}
webpack-logplugin © trigkit4, Released under the MIT License.
Authored and maintained by trigkit4 with help from contributors (list).