Added brands

This commit is contained in:
Luis Alvarez
2020-10-10 14:19:05 -05:00
parent 8e42fdd25d
commit 4c43278e67
7 changed files with 101 additions and 11 deletions

View File

@@ -42,7 +42,7 @@ export async function getStaticPaths() {
const { products } = await getAllProductPaths()
return {
paths: products.map((product) => `/product${product!.node.path}`),
paths: products.map((product) => `/product${product.node.path}`),
fallback: false,
}
}