Skip to content

Commit

Permalink
Turn on SSR flags in experimental build
Browse files Browse the repository at this point in the history
  • Loading branch information
acdlite committed Oct 14, 2019
1 parent 54b09b8 commit 09d07e2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/shared/ReactFeatureFlags.js
Expand Up @@ -31,9 +31,9 @@ export const enableProfilerTimer = __PROFILE__;
// Trace which interactions trigger each commit.
export const enableSchedulerTracing = __PROFILE__;

// Only used in www builds.
export const enableSuspenseServerRenderer = false; // TODO: __DEV__? Here it might just be false.
export const enableSelectiveHydration = false;
// SSR experiments
export const enableSuspenseServerRenderer = __EXPERIMENTAL__;
export const enableSelectiveHydration = __EXPERIMENTAL__;

// Only used in www builds.
export const enableSchedulerDebugging = false;
Expand Down

0 comments on commit 09d07e2

Please sign in to comment.