Next.js SSR에서 redirect 옵션(23.11.13)
permanent란?
export const getServerSideProps = (req: NextApiRequest) => {
const genre = req.query.genre as string;
if (genre === undefined || GENRE_MAPPING[genre] === undefined) {
return {
redirect: {
destination: "/ranking?genre=romance",
permanent: false,
},
};
}
return {
props: {},
};
};permanent는 무엇일까?
Last updated