We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 673b93c commit 5892d76Copy full SHA for 5892d76
nativescript-angular/platform.ts
@@ -18,6 +18,7 @@ import {
18
} from "@angular/platform-browser-dynamic";
19
20
import {
21
+ DOCUMENT,
22
ɵINTERNAL_BROWSER_PLATFORM_PROVIDERS as INTERNAL_BROWSER_PLATFORM_PROVIDERS
23
} from "@angular/platform-browser";
24
@@ -59,6 +60,10 @@ export const NS_COMPILER_PROVIDERS: StaticProvider[] = [
59
60
},
61
multi: true
62
63
+ {
64
+ provide: DOCUMENT,
65
+ useValue: { body: { isOverride: true } },
66
+ },
67
];
68
69
// Dynamic platform
0 commit comments