Hi i'm currently using nextjs middleware to check authentication for every page
everything works fine when I'm navigating from the browser URL.
But when I try to navigate using next/link. it's skipped the middleware check.
I think this is by design on how next/link works because of the prefetch thing.
Is there a workaround that we can use to trigger nextjs middleware manually with next/link ?
import Link from 'next/link'
<Link href="/admin">Admin</Link>