Now webpack logs only display errors on Travis (#6897)

This commit is contained in:
Nick Taylor 2020-03-27 08:12:28 -04:00 committed by GitHub
parent 0374f2d101
commit 1eeb472b91
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,3 +1,7 @@
const environment = require('./environment');
module.exports = environment.toWebpackConfig();
const config = environment.toWebpackConfig();
config.stats = 'errors-only';
module.exports = config;