Skip to content

Commit 3a15bf0

Browse files
committed
Temporarily reverting Host and deploy: WebAssembly compression coverage
1 parent 218577a commit 3a15bf0

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

aspnetcore/blazor/host-and-deploy/webassembly.md

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -118,14 +118,10 @@ In the `wwwroot/index.html` file, set `autostart` to `false` on Blazor's `<scrip
118118

119119
After Blazor's `<script>` tag and before the closing `</body>` tag, add the following JavaScript code `<script>` block. The following function calls `fetch` with [`cache: 'no-cache'`](https://developer.mozilla.org/docs/Web/API/Request/cache#value) to keep the browser's cache updated.
120120

121-
:::moniker range=">= aspnetcore-8.0 < aspnetcore-10.0"
121+
:::moniker range=">= aspnetcore-8.0"
122122

123123
Blazor Web App:
124124

125-
:::moniker-end
126-
127-
:::moniker range=">= aspnetcore-8.0"
128-
129125
```html
130126
<script type="module">
131127
import { BrotliDecode } from './decode.min.js';
@@ -153,16 +149,10 @@ Blazor Web App:
153149
</script>
154150
```
155151

156-
:::moniker-end
157-
158-
:::moniker range=">= aspnetcore-8.0 < aspnetcore-10.0"
159-
160152
Standalone Blazor WebAssembly:
161153

162154
:::moniker-end
163155

164-
:::moniker range="< aspnetcore-10.0"
165-
166156
```html
167157
<script type="module">
168158
import { BrotliDecode } from './decode.min.js';
@@ -188,8 +178,6 @@ Standalone Blazor WebAssembly:
188178
</script>
189179
```
190180

191-
:::moniker-end
192-
193181
For more information on loading boot resources, see <xref:blazor/fundamentals/startup#load-boot-resources>.
194182

195183
:::moniker range=">= aspnetcore-8.0"

0 commit comments

Comments
 (0)