mirror of
https://github.com/zebrajr/react.git
synced 2025-12-06 12:20:20 +01:00
Publish an aliasable entry for `react-dom` top level package exports for use in server environments. This is a stub containing only the exports that we expect to retain in the top level once 19 is released
8 lines
242 B
JavaScript
8 lines
242 B
JavaScript
'use strict';
|
|
|
|
if (process.env.NODE_ENV === 'production') {
|
|
module.exports = require('./cjs/react-dom-server-rendering-stub.production.min.js');
|
|
} else {
|
|
module.exports = require('./cjs/react-dom-server-rendering-stub.development.js');
|
|
}
|