chore: test deploy snapshot

This commit is contained in:
2026-05-27 12:11:09 +09:00
parent 26220577fc
commit 58c5a7cfee
4 changed files with 5 additions and 13 deletions

View File

@@ -26,7 +26,6 @@
};
let installMetadata = null;
let staticManifestHref = null;
if (pathname === '/play/apps') {
const appId = searchParams.get('app')?.trim() ?? '';
@@ -57,7 +56,6 @@
themeColor: '#165dff',
scope: pathname,
};
staticManifestHref = '/chat-share.webmanifest';
}
if (!installMetadata) {
@@ -92,7 +90,7 @@
],
};
const manifestHref = staticManifestHref ?? URL.createObjectURL(
const manifestHref = URL.createObjectURL(
new Blob([JSON.stringify(manifest, null, 2)], {
type: 'application/manifest+json',
}),