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