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 feb018d commit b332cadCopy full SHA for b332cad
src/Uno.Wasm.Bootstrap/ts/Uno/WebAssembly/Bootstrapper.ts
@@ -108,8 +108,8 @@ namespace Uno.WebAssembly.Bootstrap {
108
.withConfig({ loadAllSatelliteResources: config.config.uno_loadAllSatelliteResources });
109
}
110
111
- var features = config.config.environmentVariables['UNO_BOOTSTRAP_MONO_RUNTIME_FEATURES'];
112
- if (features && features.includes('threads')) {
+ var features = config.config.environmentVariables['UNO_BOOTSTRAP_MONO_RUNTIME_FEATURES'] || "";
+ if (features.includes('threads')) {
113
m.dotnet
114
.withConfig({ jsThreadBlockingMode: "DangerousAllowBlockingWait" });
115
0 commit comments