OhB00
OhB00
3rd times a charm
Found an interesting workaround for this one, prepending your URL with `//` enables you to perform an external redirect. For example, to redirect to http://google.com use `navigateTo("//google.com")`. This works provided...
This can happen when deploying Nuxt with an incompatible unstorage driver.
Thought I'd share, not awaiting promises caused this for me, check you've not missing any `await`
Was this or #900 resolved?
Workaround: ```ts const img = useImage() const sizes = img.getSizes("/i/splash.jpg", { sizes: "500px sm:600px md:800px lg:1200px", modifiers: { quaility: 100 } }) const srcset = sizes.srcset.replace(/w_\d+/g, match => match.replace('w_', 'h_'))...