mirror of
https://github.com/zebrajr/react.git
synced 2025-12-06 12:20:20 +01:00
* Rename Flight to Transport Flight is still the codename for the implementation details (like Fiber). However, now the public package is react-transport-... which is only intended to be used directly by integrators. * Rename names
8 lines
258 B
JavaScript
8 lines
258 B
JavaScript
'use strict';
|
|
|
|
if (process.env.NODE_ENV === 'production') {
|
|
module.exports = require('./cjs/react-transport-dom-webpack-server.node.production.min.js');
|
|
} else {
|
|
module.exports = require('./cjs/react-transport-dom-webpack-server.node.development.js');
|
|
}
|