mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
16 lines
451 B
JavaScript
16 lines
451 B
JavaScript
export default class WarnFixPlugin {
|
|
apply(compiler) {
|
|
compiler.plugin('done', stats => {
|
|
stats.compilation.warnings = stats.compilation.warnings.filter(warn => {
|
|
/* istanbul ignore next */
|
|
if (warn.name === 'ModuleDependencyWarning' &&
|
|
warn.message.includes(`export 'default'`) &&
|
|
warn.message.indexOf('nuxt_plugin_') === 0) {
|
|
return false
|
|
}
|
|
return true
|
|
})
|
|
})
|
|
}
|
|
}
|