Javascript – NextJS dynamic routes not working on my localhost
src/app/user/.js .js file: import { useRouter } from 'next/router' export default function User() { const router = useRouter() return ( <p> {router.query.username} </p> ); } When i go to "localhost:3000/user/john" user/username url returning 404 not found. I followed the examples…