We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcaf200 commit 35027c3Copy full SHA for 35027c3
packages/react-router/lib/dom/ssr/entry.ts
@@ -42,6 +42,7 @@ export interface EntryContext extends FrameworkContextObject {
42
}
43
44
export interface FutureConfig {
45
+ unstable_subResourceIntegrity: boolean;
46
unstable_middleware: boolean;
47
48
packages/react-router/lib/dom/ssr/routes-test-stub.tsx
@@ -100,6 +100,7 @@ export function createRoutesStub(
100
if (routerRef.current == null) {
101
remixContextRef.current = {
102
future: {
103
+ unstable_subResourceIntegrity: future?.unstable_subResourceIntegrity === true,
104
unstable_middleware: future?.unstable_middleware === true,
105
},
106
manifest: {
0 commit comments