Nuxt has auto-import and simplifies the import paths for us.
Any exports from files placed in the utils
folder will be automatically made available from #imports
.
Instead of using the absolute or relative path, you can just import from there.
Example:
import { authUtils } from '#imports'
will import the class authUtils
class that is exported from the utils/auth.ts
file.