mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 17:13:56 +00:00
9a0fc57724
Co-authored-by: Sébastien Chopin <seb@nuxtjs.com> Co-authored-by: pooya parsa <pyapar@gmail.com>
18 lines
546 B
Markdown
18 lines
546 B
Markdown
---
|
|
icon: IconDirectory
|
|
title: 'assets'
|
|
head.title: Assets directory
|
|
---
|
|
|
|
# Assets directory
|
|
|
|
The `assets/` directory is used to add all the website assets that the build tool (webpack or Vite) will process.
|
|
|
|
The directory usually contains the following types of files:
|
|
|
|
- Stylesheets (CSS, SASS, etc.)
|
|
- Fonts
|
|
- Images that won't be served from the [`public/`](/guide/directory-structure/public) directory.
|
|
|
|
If you want to serve assets from the server, we recommend taking a look at the [`public/`](/guide/directory-structure/public) directory.
|