-
Notifications
You must be signed in to change notification settings - Fork 270
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
No _ipx folder after nuxt build command #1485
Comments
Same problem |
same problem with v1.7.0 1.7.1 and 1.8.0, whereas is was working last month with 1.7.1, it seems a dependency has changed under the hood. |
Adding "ipx": "3.0.1" as devdependencies solveed the issue of prerendering images in the public folder under _ipx BUT doesn't help on images hosted on an external blob storage like Azure Blob, I don't know why both where working since a while previously, it seems something has changed since the last 3/4 weeks |
Not sure if this is your case but from my tests it only works with ssr: true and router.options.hashMode: false |
Update: I’ve solved this issue, but I haven’t had much time to sit down and write the fix due to other large projects at work. I’ll try to get to it on Saturday and share the full solution with everyone. Here’s what I can say for now: Support for this (official!!) module is terrible and practically non-existent. The real problem, of course, is the almost non-existent documentation for this module. Any contributor may say that I’m wrong, but the fact is, none of them have helped solve the issue, and my solution works. |
Looking forward to your progress |
@shlomi93 It would be really great to get some info on how you solved this? Any chance you could provide some details? Seems this is still a problem for a number of people... :-( TIA |
I am also trying to figure out where ipx is serving, because it doesn't seem to be under _ipx. I am wondering if there is a nitro config to proxy to it. Never actually used this module before even though I have been using nuxt for years. Digging into the source now to see if I can figure it out. |
Hello
I'm trying to use NuxtImg without success in my SSR Nuxt3 project.
The following happens in both Windows 10, and Ubuntu 24.04 LTS
i have installed it and in nuxt.config i've added:
then in a specific component:
[props.imagePath is "/assets/icons/test.webp" for example and it is found inside public folder, so actually public/assets/icons/man.webp]
then I run
nuxt build
and then
node .output/server/index.mjs
when inspecting the image, i can see that the src is /ipx//.... but there is not /_ipx/ dir in .output/ or any of its sub-dirs
why i don't get the ipx folder?
Thanks
The text was updated successfully, but these errors were encountered: