Not Found Page not showing. Console logs go through tho but no rendered html
Unanswered
Whip-poor-will posted this in #help-forum
Whip-poor-willOP
Have both in root and on app/blog/not-found.tsx
import Link from 'next/link'
export default function NotFound() {
console.log('blog not found')
return (
<div className="text-black">
<h2>Not Found</h2>
<p>Could not find requested resource</p>
<Link href="/">Return Home</Link>
</div>
)
}
2 Replies
Whip-poor-willOP
Running next.js
14.0.3
Whip-poor-willOP
seems to work in vercel previews but not locally for me