Nuxt/docs/2.directory-structure/1.public.md
Sébastien Chopin cd7627d9ff chore: wip
2023-03-27 15:17:17 +02:00

14 lines
468 B
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: "public/"
description: "The public/ directory is used to serve your website's static assets."
head.title: "public/"
---
# Public Directory
The `public/` directory is directly served at the server root and contains public files that have to keep their names (e.g. `robots.txt`) _or_ likely won't change (e.g. `favicon.ico`).
::alert{icon=💡}
This is known as the [`static/`](https://nuxtjs.org/docs/directory-structure/static) directory in Nuxt 2.
::