I just created a NextJS 13 default application by using the following command.
npx create-next-app@latest --experimental-app
<Link> is not working.
Unhandled Runtime Error
TypeError: Cannot read properties of undefined (reading 'call')
What am I missing? I have not written any code except for
<>
<h1 className='text-3xl font-bold underline'>
Hello my friends
</h1>
<Link href='/'>Click Me</Link>
<Image alt=''></Image>
</>
I maybe missing a step in configuration. No clue.