Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
495 Bytes
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
/**
* Allow jsx-runtime to be successfully imported from either React 17 or React 18.
*
* Inspired by the approach here: https://github.com/contentlayerdev/contentlayer/blob/main/packages/next-contentlayer/src/hooks/jsx-runtime.cjs
*/
if (process.env.NODE_ENV === 'production') {
module.exports.jsxRuntime = require('react/jsx-runtime')
} else {
module.exports.jsxRuntime = require('react/jsx-dev-runtime')
}