Skip to content

Commit

Permalink
remove manifest in DEBUG mode (since it's constantly failing and the …
Browse files Browse the repository at this point in the history
…log is annoying)
  • Loading branch information
williamstein committed Jan 23, 2025
1 parent 277b139 commit 362568e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/packages/static/src/manifest.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,12 @@ window.addEventListener("load", async function () {
}
});

declare var DEBUG;

export default function Manifest() {
if (DEBUG) {
return null;
}
return (
<Helmet>
<link
Expand Down

0 comments on commit 362568e

Please sign in to comment.