Advanced Features: Absolute Imports and Module Path Aliases | Next.js
// jsconfig.json
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/components/*": ["components/*"]
}
}
}
import Button from '@components/Button'
return <>
<Button/>
</>
_app.js
의 사용법 (Page Compoenent의 Wrapper)Advanced Features: Custom App
| Next.js