mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
2a50c176cf
Fixes #5363 I noticed this happening when making some changes on the nextjs.org/learn app. Basically we didn't apply updates when a warning was emitted from webpack. This would cause issues for users using eslint-loader or similar too.
5 lines
143 B
JavaScript
5 lines
143 B
JavaScript
module.exports = function (source) {
|
|
this.emitWarning(new Error('This is an expected warning added by warning-loader.js'))
|
|
return source
|
|
}
|