Skip to content

Commit

Permalink
integrity
Browse files Browse the repository at this point in the history
  • Loading branch information
ysmoradi committed Sep 19, 2024
1 parent 9e08c52 commit a1cbce8
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<HybridGlobalization>true</HybridGlobalization>
<WasmStripILAfterAOT>true</WasmStripILAfterAOT>
<ServiceWorkerAssetsManifest Condition=" '$(PwaEnabled)' == 'true' ">service-worker-assets.js</ServiceWorkerAssetsManifest>
<BlazorCacheBootResources Condition=" '$(PwaEnabled)' == 'true' ">false</BlazorCacheBootResources>
<BlazorCacheBootResources>false</BlazorCacheBootResources>
<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile>
<StaticWebAssetProjectMode>Default</StaticWebAssetProjectMode>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,11 @@ self.serverHandledUrls = [
/\/api.fda.gov/
];

self.isPassive = true;
self.defaultUrl = "/";
self.errorTolerance = 'lax';
self.caseInsensitiveUrl = true;
self.enableIntegrityCheck = false;
self.noPrerenderQuery = 'no-prerender=true';
self.disablePassiveFirstBoot = true;
self.isPassive = self.disablePassiveFirstBoot = true;

self.importScripts('_content/Bit.Bswup/bit-bswup.sw.js');
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<InvariantGlobalization Condition="'$(MultilingualEnabled)' == 'false'">true</InvariantGlobalization>
<HybridGlobalization Condition="'$(MultilingualEnabled)' == 'true'">true</HybridGlobalization>
<ServiceWorkerAssetsManifest Condition=" '$(PwaEnabled)' == 'true' ">service-worker-assets.js</ServiceWorkerAssetsManifest>
<BlazorCacheBootResources Condition=" '$(PwaEnabled)' == 'true' ">false</BlazorCacheBootResources>
<BlazorCacheBootResources>false</BlazorCacheBootResources>
<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile>
<StaticWebAssetProjectMode>Default</StaticWebAssetProjectMode>
<!--/+:msbuild-conditional:noEmit -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,10 @@ self.serverHandledUrls = [
];

self.defaultUrl = "/";
self.errorTolerance = 'lax';
self.caseInsensitiveUrl = true;
self.enableIntegrityCheck = false;
self.noPrerenderQuery = 'no-prerender=true';
self.isPassive = self.disablePassiveFirstBoot = true;
self.errorTolerance = 'lax';

self.importScripts('_content/Bit.Bswup/bit-bswup.sw.js');
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile>
<StaticWebAssetProjectMode>Default</StaticWebAssetProjectMode>
<InvariantGlobalization>true</InvariantGlobalization>
<BlazorCacheBootResources>false</BlazorCacheBootResources>
<ResolveStaticWebAssetsInputsDependsOn>
BeforeBuildTasks;
$(ResolveStaticWebAssetsInputsDependsOn)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile>
<StaticWebAssetProjectMode>Default</StaticWebAssetProjectMode>
<InvariantGlobalization>true</InvariantGlobalization>
<BlazorCacheBootResources>false</BlazorCacheBootResources>
<ResolveStaticWebAssetsInputsDependsOn>
BeforeBuildTasks;
$(ResolveStaticWebAssetsInputsDependsOn)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile>
<StaticWebAssetProjectMode>Default</StaticWebAssetProjectMode>
<InvariantGlobalization>true</InvariantGlobalization>
<BlazorCacheBootResources>false</BlazorCacheBootResources>
<ResolveStaticWebAssetsInputsDependsOn>
BeforeBuildTasks;
$(ResolveStaticWebAssetsInputsDependsOn)
Expand Down

0 comments on commit a1cbce8

Please sign in to comment.