rsnext/test/integration/prerender/pages/catchall/[...slug].js

22 lines
446 B
JavaScript
Raw Normal View History

export async function unstable_getStaticProps({ params: { slug } }) {
return {
props: {
slug,
},
revalidate: 1,
}
}
export async function unstable_getStaticPaths() {
return {
paths: [
{ params: { slug: ['first'] } },
'/catchall/second',
{ params: { slug: ['another', 'value'] } },
'/catchall/hello/another',
],
}
}
export default ({ slug }) => <p id="catchall">Hi {slug?.join('/')}</p>