Skip to content

Instantly share code, notes, and snippets.

@akellbl4
Last active June 9, 2021 06:08
Show Gist options
  • Save akellbl4/aa2b0585a0e94f539ffcb57fe39f5322 to your computer and use it in GitHub Desktop.
Save akellbl4/aa2b0585a0e94f539ffcb57fe39f5322 to your computer and use it in GitHub Desktop.
import Link from 'next/link'
// Before
function MyComponent() {
return (
<Link href="/posts/[post]" as="/posts/blog-post">
Blog post
</Link>
)
}
// Since v10.x
function MyComponent() {
return <Link href="/posts/blog-post">Blog post</Link>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment