rsnext/test/integration/ssg-dynamic-routes-404-page/pages/post/[id].js

7 lines
180 B
JavaScript
Raw Normal View History

export const getStaticPaths = async () => ({
paths: ['/post/1'],
fallback: false,
})
export const getStaticProps = async () => ({ props: {} })
export default () => 'blog post'