mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 00:53:55 +00:00
15 lines
438 B
JavaScript
15 lines
438 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.includes('nuxt_plugin_')) {
|
|
return false
|
|
}
|
|
return true
|
|
})
|
|
})
|
|
}
|
|
}
|