Replies: 1 comment
-
I'm running into the same problem. Other images are hashed but still show correctly, favicon refuses to load due to the hashed name |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm working on a Nuxt 3 project, and I put static assets inside the
public
directory.It works fine when using
nuxt dev
andnuxt build
(the files are not renamed/hashed inside the .output directory, which is the wanted behavior).The issue is when I try to deploy the website using wrangler publish the assets are uploaded fine but renamed/hashed.
For example
/public/favicon.ico
becomes.output/public/favicon.ico
and is uploaded to Cloudflare Workers asfavicon.12b8671dff.ico
which breaks it.Have you experienced anything similar? How did you handle it?
Beta Was this translation helpful? Give feedback.
All reactions