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
Applying source maps naively seems to have the side effect of introducing redeclaration within a single module. For example, the src/reddit/pages/Recap/index.tsx module contains the following code:
The mappings in question seem to come from multiple sources. The source map for the bundle mentions multiple sources that don't correspond to modules within the bundle:
The redeclaration should be avoided in some way, such as by introducing modules based on source maps in addition to the Webpack module structure or by suffixing conflicting names.
The text was updated successfully, but these errors were encountered:
Applying source maps naively seems to have the side effect of introducing redeclaration within a single module. For example, the
src/reddit/pages/Recap/index.tsx
module contains the following code:The mappings in question seem to come from multiple sources. The source map for the bundle mentions multiple sources that don't correspond to modules within the bundle:
The redeclaration should be avoided in some way, such as by introducing modules based on source maps in addition to the Webpack module structure or by suffixing conflicting names.
The text was updated successfully, but these errors were encountered: