mirror of
https://ghproxy.net/https://github.com/abhijitb/helix.git
synced 2025-08-28 08:44:56 +08:00
8 lines
214 B
JavaScript
8 lines
214 B
JavaScript
|
'use strict';
|
||
|
|
||
|
if (process.env.NODE_ENV === 'production') {
|
||
|
module.exports = require('./cjs/react-jsx-runtime.production.min.js');
|
||
|
} else {
|
||
|
module.exports = require('./cjs/react-jsx-runtime.development.js');
|
||
|
}
|