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
I'm including React directly from my layout, and I would like webpack to exclude it from the bundle, and make react refers to the window global object React
I'm using the following:
{
...
externals: {
// Use external version of React
"react": "React"
},
plugins: [
new webpack.IgnorePlugin(/react/)
]
...
}
react gets excluded from the bundle, but client side I'm getting Uncaught Error: Cannot find module "react".
Any hints?
mii9000, kevinwucodes, wildeyes, seanadenise, LennyLip and 11 more