I am getting this error. i am using next js 13.2.3 with page router.
i am just setting bare skeleton
import React from 'react';
type Props = {};
function index({}: Props) {
return <div className="text-white">hello world</div>;
}
export default index;
this error only comes when i refresh the page. I tried looking onto some similar issues online but i am not using any Link or anchor tag. All functionalities works under the hood.