-
Notifications
You must be signed in to change notification settings - Fork 10.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gatsby-plugin-manifest omits asset prefix in manifest.webmanifest icon URLs #25207
Comments
Thanks for letting us know about this issue, @disintegrator! I'm tagging @moonmeister in case he has context on this. |
I don't have any specific background, I remember working on this PR with core team but nothing specific that'd help. This probably just got over looked. I'll take a look at the repro when I get a chance. |
We fixed all |
Ok. Then if someone more than me is wondering about this, #18497 was incorrectly closed since the problem I described there was concerning |
Delete all logs file and reinstall again |
Is this issue resolved or can I work on it? @disintegrator @moonmeister @ehannes |
As far as i know it's unresolved and you're welcome to work on it. |
This comment has been minimized.
This comment has been minimized.
…pplied to URLs in manifest.webmanifest and HTML head.
…pplied to URLs in manifest.webmanifest and HTML head.
…correctly applied to URLs in manifest.webmanifest and HTML head. Also, address linting issues by correcting string literals and formatting.
…est.webmanifest and HTML head. Ensured correct path handling and resolved linting issues by updating string literals and formatting.
…est.webmanifest and HTML head. Ensured correct path handling and resolved linting issues by updating string literals and formatting.
…est.webmanifest and HTML head. Ensured correct path handling and resolved linting issues by updating string literals and formatting.
…correctly applied to URLs in manifest.webmanifest and HTML head. Also, address linting issues by correcting string literals and formatting.
…correctly applied to URLs in manifest.webmanifest and HTML head. Also, address linting issues by correcting string literals and formatting.
…correctly applied to URLs in manifest.webmanifest and HTML head. Also, address linting issues by correcting string literals and formatting.
…correctly applied to URLs in manifest.webmanifest and HTML head. Also, address linting issues by correcting string literals and formatting.
…correctly applied to URLs in manifest.webmanifest and HTML head. Also, address linting issues by correcting string literals and formatting.
…correctly applied to URLs in manifest.webmanifest and HTML head. Also, address linting issues by correcting string literals and formatting.
…correctly applied to URLs in manifest.webmanifest and HTML head. Also, address linting issues by correcting string literals and formatting.
…correctly applied to URLs in manifest.webmanifest and HTML head. Also, address linting issues by correcting string literals and formatting.
…correctly applied to URLs in manifest.webmanifest and HTML head. Also, address linting issues by correcting string literals and formatting.
…pplied to URLs in manifest.webmanifest and HTML head.
…pplied to URLs in manifest.webmanifest and HTML head.
…correctly applied to URLs in manifest.webmanifest and HTML head. Also, address linting issues by correcting string literals and formatting.
…est.webmanifest and HTML head. Ensured correct path handling and resolved linting issues by updating string literals and formatting.
…est.webmanifest and HTML head. Ensured correct path handling and resolved linting issues by updating string literals and formatting.
…est.webmanifest and HTML head. Ensured correct path handling and resolved linting issues by updating string literals and formatting.
…correctly applied to URLs in manifest.webmanifest and HTML head. Also, address linting issues by correcting string literals and formatting.
…correctly applied to URLs in manifest.webmanifest and HTML head. Also, address linting issues by correcting string literals and formatting.
…correctly applied to URLs in manifest.webmanifest and HTML head. Also, address linting issues by correcting string literals and formatting.
…correctly applied to URLs in manifest.webmanifest and HTML head. Also, address linting issues by correcting string literals and formatting.
…correctly applied to URLs in manifest.webmanifest and HTML head. Also, address linting issues by correcting string literals and formatting.
…correctly applied to URLs in manifest.webmanifest and HTML head. Also, address linting issues by correcting string literals and formatting.
…correctly applied to URLs in manifest.webmanifest and HTML head. Also, address linting issues by correcting string literals and formatting.
…correctly applied to URLs in manifest.webmanifest and HTML head. Also, address linting issues by correcting string literals and formatting.
…correctly applied to URLs in manifest.webmanifest and HTML head. Also, address linting issues by correcting string literals and formatting.
Description
Currently, gatsby-plugin-manifest is prefixing the URL to the icons in
manifest.webmanifest
with thepathPrefix
config value only. I would assume, like other assets, the icons in the manfiest should be prefixed withassetPrefix
followed bypathPrefix
. Weirdly though, the favicon and other app icons that are inserted the document's<head>
are prefixed withassetPrefix
andpathPrefix
as expected so there's an inconsistency between icon URLs in gatsby's html document and ones insidemanifest.webmanifest
.Steps to reproduce
See https://github.com/disintegrator/gatsby-25207
Expected result
<head>
of pages are prefixed withassetPrefix
and thenpathPrefix
.manifest.webmanifest
are prefixed withassetPrefix
and thenpathPrefix
.Actual result
✅ (working) URL of icons added to the
<head>
of pages are prefixed withassetPrefix
and thenpathPrefix
.❌ (not working) URL of favicon and inside of
manifest.webmanifest
are only prefixed withpathPrefix
.Environment
The text was updated successfully, but these errors were encountered: