Back to Nuxt

public

docs/2.directory-structure/1.public.md

4.4.4577 B
Original Source

Files contained within the public/ directory are served at the root and are not modified by the build process. This is suitable for files that have to keep their names (e.g. robots.txt) or likely won't change (e.g. favicon.ico).

bash
-| public/
---| favicon.ico
---| og-image.png
---| robots.txt
vue
<script setup lang="ts">
useSeoMeta({
  ogImage: '/og-image.png',
})
</script>

::tip{to="https://v2.nuxt.com/docs/directory-structure/static/" target="_blank"} This is known as the [static/] directory in Nuxt 2. ::