mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
ef7a42649d
nuxt-start and nuxt/legacy are also coming!
17 lines
476 B
JavaScript
17 lines
476 B
JavaScript
export default class WarnFixPlugin {
|
|
apply(compiler) /* istanbul ignore next */ {
|
|
compiler.hooks.done.tap('warnfix-plugin', 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
|
|
})
|
|
})
|
|
}
|
|
}
|