File size: 495 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
/**
* 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')
}
|