6 lines
226 B
JavaScript
6 lines
226 B
JavaScript
export function needsExperimentalReact(config) {
|
|
const { ppr, taint, viewTransition } = config.experimental || {};
|
|
return Boolean(ppr || taint || viewTransition);
|
|
}
|
|
|
|
//# sourceMappingURL=needs-experimental-react.js.map
|