- Key Concepts
- Directory Structure
- Going further
Utils Directory
Nuxt 3 uses theutils/ directory to automatically import helper functions and other utilities throughout your application usingauto-imports!
The main purpose of theutils/ directory is to allow a semantic distinction between your Vue composables and other auto-imported utility functions.
The wayutils/ auto-imports work and are scanned is identical tothe composables/ directory. You can see examples and more information about how they work in that section of the docs.
These utils are only available within the Vue part of your app. Within theserver directory, we auto import exported functions and variables from~/server/utils instead.

