rsnext/test/integration/export-fallback-true-error/pages/[slug].js

10 lines
161 B
JavaScript

export const getStaticProps = () => ({
hello: 'world',
})
export const getStaticPaths = () => ({
fallback: true,
paths: [],
})
export default () => 'hi'