Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
export const getStaticPaths = async () => {
return {
paths: [],
fallback: 'blocking',
}
}
export const getStaticProps = async () => {
return {
notFound: true,
}
}
export default function Page() {
return <p>slug</p>
}