You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/***/61:
/*!*******************************************************************************!*\ !*** multi /PATH/TO/my-app/node_modules/next/dist/pages/_document.js ***! \*******************************************************************************//*! no static exports found *//*! all exports used *//*! ModuleConcatenation bailout: Module is not an ECMAScript module *//***/(function(module,exports,__webpack_require__){module.exports=__webpack_require__(/*! /PATH/TO/my-app/node_modules/next/dist/pages/_document.js */62);/***/}),/***/62:
/*!*************************************************************************!*\ !*** /PATH/TO/my-app/node_modules/next/dist/pages/_document.js ***! \*************************************************************************//*! no static exports found *//*! all exports used *//*! ModuleConcatenation bailout: Module is not an ECMAScript module *//***/(function(module,exports,__webpack_require__){module.exports=__webpack_require__(/*! next/document */63)
We get the plugin report of:
## static/HASH/pages/_document.js
next (Found 1 resolved, 1 installed. Latest version 7.0.0.)
7.0.0
~/next
* Dependency graph
my-app@0.0.1 -> next@^7.0.0
* Duplicated files in static/HASH/pages/_document.js
next/dist/pages/_document.js (S, 42)
The issue: This is because the different sources:
multi /PATH/TO/my-app/node_modules/next/dist/pages/_document.js
If we produce up with a bundle like:
We get the plugin report of:
The issue: This is because the different sources:
multi /PATH/TO/my-app/node_modules/next/dist/pages/_document.js
/PATH/TO/my-app/node_modules/next/dist/pages/_document.js
both resolve to a short name of
next/dist/pages/_document.js
Task
multi NAME
really means.multi
that may occur?The text was updated successfully, but these errors were encountered: