Nuxt/docs/2.guide/2.directory-structure/1.assets.md

21 lines
764 B
Markdown
Raw Normal View History

---
navigation.icon: IconDirectory
title: "assets"
description: "The assets/ directory is used to add all the website's assets that the build tool will process."
head.title: "assets/"
---
# Assets Directory
2023-07-07 16:24:09 +00:00
The [`assets/` directory](/docs/guide/directory-structure/assets) is used to add all the website's assets that the build tool (webpack or Vite) will process.
2021-11-21 12:31:44 +00:00
The directory usually contains the following types of files:
- Stylesheets (CSS, SASS, etc.)
- Fonts
- Images that won't be served from the [`public/`](/docs/guide/directory-structure/public) directory.
If you want to serve assets from the server, we recommend taking a look at the [`public/`](/docs/guide/directory-structure/public) directory.
2022-07-14 13:59:29 +00:00
::ReadMore{link="/docs/getting-started/assets"}