-
Notifications
You must be signed in to change notification settings - Fork 288
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
[nuxt3][vercel] Feature request: Support vercel provider for static app (nuxt generate) #617
Comments
@hartmut-co-uk This may be happening because static image generation is not supported yet (4th checkbox): |
Many thanks for the ref @mrdannyjohnson! I'd guess this work item would mean image variants (srcset) are actually generated + packaged at pre-render ('generate') time using e.x. IPX? Basically I might even prefer this option - but as far as this issue is concerned the Vercel Image Optimization(https://vercel.com/docs/concepts/image-optimization) should be used. Example
|
Have you tried setting |
hah! And I thought something from this reproduction example was different from my actual project... I've created following branch to show the state with PS: Further I have changed the vercel project settings, see screenshot in branch README.. now using 'yarn generate' and default output directory. (this shouldn't make any difference though) The generated image src/srcset now show correct use of vercel path... but what's missing as stated in initial post seems to be
|
any pointers which repo/package this actually would need to be solved with? |
The page in question has only a hand full of routes, as some sort of workaround, I was able to solve what I was trying to achieve by simply configuring all my routes for prerender: nitro: {
prerender: {
routes: ['/', '/a', '/b', '/c']
}
}, It's deployed to vercel and not served via nitro functions but static as expected. Vercel image provider is still getting configured and working. ℹ️ I'll keep the issue open, since I think it would still be good to have vercel image provider working with |
Closing as the fix was introduced in a linked PR. Feel free to reopen if needed :) |
Feature
Feature request: Support (nuxt3) nuxt/image with vercel provider for static app ->
nuxt generate
.Expected
Vercel config is generated and contains the "images" property which configures the Image Optimization feature.
Actual
Website is generated,
<nuxt-image>
components are processed fine, but vercel config does not contain the "images" property.Reproduction example
https://github.com/hartmut-co-uk/nuxt3-generate-static-vercel-image
The text was updated successfully, but these errors were encountered: