UNPKG
bun-framework-react
Version:
canary (0.0.0-canary.6)
latest (0.0.0-canary.7)
0.0.0
0.0.0-canary.7
0.0.0-canary.6
0.0.0-canary.4
0.0.0-canary.3
0.0.0-canary.2
0.0.0-canary.1
React framework integration with RSC, for the Bun Rendering API
bun-framework-react
/
vendor
/
react-server-dom-bun
/
client.browser.js
8 lines
(6 loc)
•
246 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
'use strict'
;
if
(process.
env
.
NODE_ENV
===
'production'
) {
module
.
exports
=
require
(
'./cjs/react-server-dom-bun-client.browser.production.js'
); }
else
{
module
.
exports
=
require
(
'./cjs/react-server-dom-bun-client.browser.development.js'
); }