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
// For this, we only support the key/value config format, not string or string[], since
47
+
// those ones don't clearly indicate what the resulting bundle name will be
48
+
constentryPoints=webpackConfig.entry;
49
+
constisObjectStyleConfig=entryPoints
50
+
&&typeofentryPoints==='object'
51
+
&&!(entryPointsinstanceofArray);
52
+
if(!isObjectStyleConfig){
53
+
callback('To use HotModuleReplacement, your webpack config must specify an \'entry\' value as a key-value object (e.g., "entry: { main: \'ClientApp/boot-client.ts\' }")',null);
0 commit comments