Webpack cara menonaktifkan peringatan saat menjalankan build

// in the "root" of your webpack config
// OR if you are using webpack-dev-server, in the devServer object.
stats: {
  warnings: false
}
Mason