Providers

Glide

Nuxt Image has first class integration with Glide.

Integration between Glide and the image module.

To use this provider you just need to specify the base url of your service in glide.

nuxt.config.ts
export default defineNuxtConfig({
  image: {
    glide: {
      // baseURL of your laravel application
      baseURL: 'https://glide.herokuapp.com/1.0/'
    }
  }
})