๐Ÿ“ฆ payloadcms / template-ecommerce-nextjs

๐Ÿ“„ index.tsx ยท 11 lines
1
2
3
4
5
6
7
8
9
10
11import { GetStaticProps } from 'next'

import Page, { getStaticProps as sharedGetStaticProps } from './[slug]'

export default Page

export const getStaticProps: GetStaticProps = async ctx => {
  const func = sharedGetStaticProps.bind(this)
  return func(ctx)
}