image icon indicating copy to clipboard operation
image copied to clipboard

Disable indexing images

Open sovietsolider opened this issue 4 months ago • 0 comments

Hi all! Do we have a prop to disable image indexing or how can I completely disable image indexing in /_ipx/ directory? I'm trying to overwrite headers using nitro route rules, but it only works with no /_ipx/ paths.

export default {
  '/sprites/**': { headers: { 'X-Robots-Tag': 'noindex, nofollow' } }, // Works cool
  '/_ipx/**': { // Doesn't work
    headers: {
      'X-Robots-Tag': 'noindex, nofollow',
    },
  },
}

Enviroment: "@nuxt/image": "1.10.0" "nuxt": "^3.17.7"

sovietsolider avatar Aug 06 '25 04:08 sovietsolider