export default function Post() { return ; } Post.getInitialProps = async (ctx) => { const req = ctx.req; const res = ctx.res; res.end(req.url); // $ Alert return {} } export async function getServerSideProps(ctx) { const req = ctx.req; const res = ctx.res; res.end(req.url); // $ Alert return { props: {} } }