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 32d556a commit ed16657Copy full SHA for ed16657
src/Uno.Wasm.Bootstrap/ts/Uno/WebAssembly/Bootstrapper.ts
@@ -104,6 +104,13 @@ namespace Uno.WebAssembly.Bootstrap {
104
.withRuntimeOptions(config.config.uno_runtime_options)
105
.withConfig({ loadAllSatelliteResources: config.config.uno_load_all_satellite_resources });
106
107
+ var features = config.config.environmentVariables['UNO_BOOTSTRAP_MONO_RUNTIME_FEATURES'];
108
+
109
+ if (features && features.includes('threads')) {
110
+ // m.dotnet
111
+ // .withConfig({ jsThreadBlockingMode: "DangerousAllowBlockingWait" });
112
+ }
113
114
const dotnetRuntime = await m.default(
115
(context: DotnetPublicAPI) => {
116
bootstrapper.configure(context);
0 commit comments