mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-27 19:54:13 +00:00
7 lines
190 B
JavaScript
7 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');
|
|
}
|