mirror of
https://github.com/facebook/react.git
synced 2026-02-26 07:55:55 +00:00
Turns out Codesandbox didn't support `String.prototype.replaceAll` in #26329. This updates the config to use Node.js 18 for Codesandbox builds.
13 lines
372 B
JSON
13 lines
372 B
JSON
{
|
|
"packages": ["packages/react", "packages/react-dom", "packages/scheduler"],
|
|
"buildCommand": "download-build-in-codesandbox-ci",
|
|
"node": "18",
|
|
"publishDirectory": {
|
|
"react": "build/oss-experimental/react",
|
|
"react-dom": "build/oss-experimental/react-dom",
|
|
"scheduler": "build/oss-experimental/scheduler"
|
|
},
|
|
"sandboxes": ["new"],
|
|
"silent": true
|
|
}
|