Skip to content

Commit

Permalink
Patch: Disable Blazor caching by default to prevent taking up storage…
Browse files Browse the repository at this point in the history
… when loaded in content scripts
  • Loading branch information
mingyaulee committed Nov 17, 2022
1 parent bbed2f3 commit 760ff73
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

<PropertyGroup>
<!-- Prevent caching by default since all browser extension files are local -->
<BlazorCacheBootResources>false</BlazorCacheBootResources>
<BrowserExtensionBootstrap Condition="'$(BrowserExtensionBootstrap)' == ''">false</BrowserExtensionBootstrap>
<BuildBlazorToBrowserExtension Condition="'$(BuildBlazorToBrowserExtension)' == ''">true</BuildBlazorToBrowserExtension>
<PublishBlazorToBrowserExtension Condition="'$(PublishBlazorToBrowserExtension)' == ''">true</PublishBlazorToBrowserExtension>
Expand Down

0 comments on commit 760ff73

Please sign in to comment.