This commit is contained in:
Bel Curcio
2021-05-28 12:38:41 -03:00
75 changed files with 8657 additions and 84 deletions

View File

@@ -21,15 +21,15 @@ export async function getStaticProps({
preview,
})
const { categories, brands } = await getSiteInfo({ config, preview })
const { pages } = await getAllPages({ config, preview })
// const { categories, brands } = await getSiteInfo({ config, preview })
// const { pages } = await getAllPages({ config, preview })
return {
props: {
products,
categories,
brands,
pages,
categories: [],
brands: [],
pages: [],
},
revalidate: 14400,
}