Nuxt/docs/content/1.docs/2.guide/2.directory-structure/1.assets.md
Sébastien Chopin 2facf0e594
docs: improve seo titleTemplate and add social images (#9235)
* docs: improve seo titleTemplate and add social images

* chore: update
2022-11-21 16:51:39 +01:00

722 B

navigation.icon title description head.title
IconDirectory assets The assets/ directory is used to add all the website's assets that the build tool will process. assets/

Assets Directory

The assets/ directory is used to add all the website's 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/ directory.

If you want to serve assets from the server, we recommend taking a look at the public/ directory.

::ReadMore{link="/docs/getting-started/assets"}