Nuxt/docs/content/2.guide/2.directory-structure/1.assets.md
Clément Ollivier 944bba97ca
docs: update structure (#7047)
Co-authored-by: Pooya Parsa <pooya@pi0.io>
2022-09-13 14:54:31 +02:00

592 B

icon title head.title
IconDirectory assets Assets Directory

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="/getting-started/assets"}