Ask Your Question
2

What are the TypeScript declarations for GET when using Next.js 13 Routes API?

asked 2023-05-17 16:06:05 +0000

lakamha gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2023-05-17 16:31:02 +0000

nofretete gravatar image

The TypeScript declarations for GET when using Next.js 13 Routes API are:

import { GetServerSidePropsContext, GetStaticPropsContext } from 'next';

// For server-side rendering
export async function getServerSideProps(context: GetServerSidePropsContext) {
  // Your code here
  return {
    props: {},
  };
}

// For static site generation
export async function getStaticProps(context: GetStaticPropsContext) {
  // Your code here
  return {
    props: {},
  };
}

Note: getServerSideProps is used for server-side rendering, while getStaticProps is used for generating static pages at build time.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-05-17 16:06:05 +0000

Seen: 12 times

Last updated: May 17 '23