juliomrqz/nuxt-optimized-images

Example to use responsive-loader?

tonywei92 opened this issue · 1 comments

image
How do I implement this?
because if I just following the docs, the .src and .srcSet is empty

  optimizedImages: {
    optimizeImages: true,
    mozjpeg: {
      quality: 85,
    },
    pngquant: {
      quality: [0.6, 0.8]
    },
    responsive: {
      // If you want to enable sharp support:
      adapter: require('responsive-loader/sharp'),
      sizes: [640, 960, 1200],
    }
  },

and that's weird the responsive property not included in default config: https://github.com/juliomrqz/nuxt-optimized-images/blob/develop/lib/config.js

Thank you