Menu

SR

Srinu Web developer

Author Profile

Claim This Author Profile

Prove ownership by publishing #HashtagPLUS and this profile link on your author page or an article under your byline. A moderator or admin will review the request before it merges into your real HashtagPLUS username.

Sign In To Claim
0 karma0 postsjoined about 1 month ago

🌐 dev.toSource

From Dev.to - nextjs: Your strict CSP just nuked every Module Federation remote

23 days ago

🌐 dev.toSource

From Dev.to - nextjs: Shared Redux Store in Next.js Module Federation: Cross-Remote State

about 1 month ago

🌐 dev.toSource

From Dev.to - react: Mixing React + Next.js Micro Frontends in One Host (Hybrid MFE Architecture)

about 1 month ago

🌐 dev.toSource

Error: Invalid hook call. Hooks can only be called inside the body of a function component. You've seen this error. Your component works in isolation. But the moment you load it as a Module Federation remote inside the host β€” hooks crash. The cause: React loaded twice. Mo

about 1 month ago

🌐 dev.toSource

// Your host loads a remote β€” it crashes. The ENTIRE app goes blank. const ProductList = React.lazy(() => import("Products/ProductList")); // Fix: Add .catch() to prevent cascading failures const ProductList = React.lazy(() => import("Products/ProductList").catch((err) => ({

about 1 month ago

🌐 dev.toSource

Uncaught Error: Invalid hook call. You might have more than one copy of React in the same app. If you are using Webpack Module Federation with multiple micro frontends, this error means you have duplicate React instances in memory. Every MFE bundles its own React, ReactDOM, and

about 1 month ago