gridjs-react icon indicating copy to clipboard operation
gridjs-react copied to clipboard

add react-dom/client to rollups externals

Open jendrikw opened this issue 1 month ago • 0 comments

Fixes an issue where the following code was included in the bundle:

var m = require$$0;

if (process.env.NODE_ENV === 'production') {

  createRoot = m.createRoot;

  m.hydrateRoot;

} else {

  var i = m.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;

  createRoot = function(c, o) {

    i.usingClientEntryPoint = true;

    try {

      return m.createRoot(c, o);

    } finally {

      i.usingClientEntryPoint = false;

    }

  };

}

jendrikw avatar Dec 10 '25 14:12 jendrikw