The none provider is a minimal pass-through provider that returns image URLs without applying any transformations or optimizations.
This provider is useful when you want to use Nuxt Image components for consistent markup and loading behavior, but don't need actual image optimization.
export default defineNuxtConfig({
  image: {
    provider: 'none'
  }
})
When using the none provider:
This is particularly useful for development, testing, or when your images are already optimized and you just want the component interface.