Diyorbek
Back to notes
7,657 views

Absolute Import

react

Configure absolute imports so you can write @/components/... instead of ../../../.

// tsconfig.json
{
  "compilerOptions": {
    "baseUrl": ".",
    "paths": { "@/*": ["./src/*"] }
  }
}

Next.js and Vite both read this automatically.