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