mirror of
https://github.com/oceanprotocol/status-frontend.git
synced 2024-11-22 18:00:14 +01:00
8 lines
190 B
JavaScript
8 lines
190 B
JavaScript
'use strict';
|
|
|
|
if (process.env.NODE_ENV === 'production') {
|
|
module.exports = require('./cjs/react.production.min.js');
|
|
} else {
|
|
module.exports = require('./cjs/react.development.js');
|
|
}
|