Skip to content

Commit

Permalink
Merge pull request #18652 from unoplatform/dev/jela/optional-pwa
Browse files Browse the repository at this point in the history
fix: Don't include non-existing pwa manifest
  • Loading branch information
jeromelaban authored Nov 4, 2024
2 parents ecc4884 + 0474b29 commit 9ccb7bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Uno.Sdk/packages.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
},
{
"group": "Resizetizer",
"version": "1.6.0-dev.31",
"version": "1.7.0-dev.2",
"packages": [
"Uno.Resizetizer"
]
Expand Down
2 changes: 1 addition & 1 deletion src/Uno.Sdk/targets/Uno.SingleProject.Wasm.targets
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<UnoIsWebAssemblyBrowserHead>true</UnoIsWebAssemblyBrowserHead>
<WasmPWAManifestFile Condition="$(WasmPWAManifestFile) == ''">$(WasmProjectFolder)manifest.webmanifest</WasmPWAManifestFile>
<WasmPWAManifestFile Condition="$(WasmPWAManifestFile) == '' AND exists('$(WasmProjectFolder)manifest.webmanifest')">$(WasmProjectFolder)manifest.webmanifest</WasmPWAManifestFile>
<!--
Supports Deep Linking Routes
https://aka.platform.uno/wasm-deeplink
Expand Down

0 comments on commit 9ccb7bf

Please sign in to comment.