mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-30 09:27:13 +00:00
17 lines
509 B
Markdown
17 lines
509 B
Markdown
|
---
|
||
|
icon: IconDirectory
|
||
|
title: 'assets'
|
||
|
head.title: Assets directory
|
||
|
---
|
||
|
|
||
|
# Assets directory
|
||
|
|
||
|
The `assets/` directory is used to add all the website assets that will be processed by the build tool (Webpack of Vite).
|
||
|
|
||
|
The directory usually contain such files:
|
||
|
- Stylesheets (CSS, SASS, etc.)
|
||
|
- Fonts
|
||
|
- Images that won't be served from the [public/](/docs/structure/public) directory.
|
||
|
|
||
|
If you want to serve assets from the server, we recommend to take a look at the [public/](/docs/structure/public) directory.
|