Answers for "nextjs path alias"

0

nextjs path alias

// Imports 'components/design-system/button'
import Button from '@/design-system/button'
Posted by: Guest on October-13-2021
0

nextjs path alias

// tsconfig.json or jsconfig.json
{
  "compilerOptions": {
    "baseUrl": ".",
    "paths": {
      "@/design-system/*": ["components/design-system/*"]
    }
  }
}
Posted by: Guest on October-13-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language