Heim > Fragen und Antworten > Hauptteil
Ich möchte diese Fehlermeldung auch für mein eigenes konfiguriertes Webpack verwenden.
ringa_lee2017-05-19 10:35:17
http://webpack.github.io/docs...
var webpack = require("webpack");
webpack({
// configuration
}, function(err, stats) {
if (err) { throw new gutil.PluginError('webpack:build', err); }
gutil.log('[webpack:build]', stats.toString({
chunks: false, // Makes the build much quieter
colors: true
}));
});