No assign module variable
Source URL: https://nextjs.org/docs/messages/no-assign-module-variable
No assign module variable
Section titled “No assign module variable”Prevent assignment to the
modulevariable.
Why This Error Occurred
Section titled “Why This Error Occurred”A value is being assigned to the module variable. The module variable is already used and it is highly likely that assigning to this variable will cause errors.
Possible Ways to Fix It
Section titled “Possible Ways to Fix It”Use a different variable name:
let myModule = {...}