Damien Robinson
Damien Robinson
I ran yarn install with the latest version of yarn 1 but it has removed all " from the lock file. I also had to set the test src for...
~~Duplicate of #392~~
I think ipx is decoding the url it gets so is making the request to firebase as `deals_images/Yole/Burger-King-Singapore-Promotion-October-2019-1024x1024.jpg` ipx provider encode src here https://github.com/nuxt/image/blob/main/src/runtime/providers/ipx.ts#L29 ipx decode here https://github.com/unjs/ipx/blob/main/src/middleware.ts#L31
Glide signed URL documentation: https://glide.thephpleague.com/2.0/config/security/
I also get a bit confused by the image size breakpoints I had to define a new set to match Vuetify.
I use vuetify image component for the lazy loading source and generate a small 10 pixel image. ```html ```
Is #249 related? My 404 page is giving a similar error. [Code](https://github.com/shadow81627/daim/blob/master/components/error/404.vue) [Production 404 page](https://daim.dev/404)
@adhamfarrag here is the code ```vue 404 {{ $t('error.404.heading') }} {{ $t('error.404.description') }} {{ $t('layout.navigation.home') }} export default { props: { error: { type: Object, default: () => {}, },...
The update has fixed the 404 page in my preview but when I run `npm run generate` `npm run start` I get an error. ``` TypeError: input must be a...
I had a similar issue where my url doesn't have a mime type extension. eg. `http://localhost/image-id` when statically generated was getting a file path like `/_nuxt/img/image-id.[ext]`. I guess there should...