Skip to content

Commit

Permalink
Re-order config
Browse files Browse the repository at this point in the history
  • Loading branch information
markdalgleish committed Nov 6, 2024
1 parent 2da604e commit 99a232c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/remix-dev/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ interface FutureConfig {
v3_throwAbortReason: boolean;
v3_singleFetch: boolean;
v3_lazyRouteDiscovery: boolean;
unstable_routeConfig: boolean;
unstable_optimizeDeps: boolean;
unstable_routeConfig: boolean;
}

type NodeBuiltinsPolyfillOptions = Pick<
Expand Down Expand Up @@ -721,8 +721,8 @@ export async function resolveConfig(
v3_throwAbortReason: appConfig.future?.v3_throwAbortReason === true,
v3_singleFetch: appConfig.future?.v3_singleFetch === true,
v3_lazyRouteDiscovery: appConfig.future?.v3_lazyRouteDiscovery === true,
unstable_routeConfig: appConfig.future?.unstable_routeConfig === true,
unstable_optimizeDeps: appConfig.future?.unstable_optimizeDeps === true,
unstable_routeConfig: appConfig.future?.unstable_routeConfig === true,
};

if (appConfig.future) {
Expand Down

0 comments on commit 99a232c

Please sign in to comment.