docs(blob): clarify nuxt image dev config#851
Merged
Conversation
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
playground | 2a30086 | Commit Preview URL Branch Preview URL |
Feb 18 2026, 11:38 AM |
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
commit: |
atinux
approved these changes
Feb 23, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #850.
Problem
In local development,
@nuxt/imagedefaults to theipxprovider whenimage.provideris not configured.When your images are served by a Nuxt route (for example
/images/**viablob.serve()), IPX generates/_ipx/...URLs and then tries to read the source from the filesystem, not by requesting your/images/**route. This leads toIPX_FILE_NOT_FOUND.Minimal repro (Nuxt 4.3.1,
@nuxt/[email protected],@nuxthub/[email protected]):200:curl -i http://127.0.0.1:3000/images/photo.pngcurl -i 'http://127.0.0.1:3000/_ipx/w_300&q_80/images/photo.png'->404 IPX_FILE_NOT_FOUNDimage: { provider: 'none' }makes<NuxtImg>pass-through and use/images/...URLs -> works.Local evidence captured:
/tmp/nuxthub-850-baseline.png/tmp/nuxthub-850-fixed.pngChanges
/images/**blob.serve()route snippet to the Nuxt Image section and link to the full "Serve a blob" docs.image: { provider: 'none' }for development/default config.$productiononly.cloudflare.baseURL: '/images'from the example.