mirror of
https://github.com/vercel/commerce.git
synced 2025-06-28 01:11:24 +00:00
fix: env
This commit is contained in:
parent
eae24f1f35
commit
277609dea6
@ -17,7 +17,7 @@ export default async function ProductPage(props: { params: Promise<{ slug: strin
|
|||||||
<div className="mb-6 px-4">
|
<div className="mb-6 px-4">
|
||||||
<span>{category.description}</span>
|
<span>{category.description}</span>
|
||||||
</div>
|
</div>
|
||||||
<section className="mx-auto grid max-w-screen-2xl flex-col gap-6 px-4 pb-4 md:grid-cols-8 md:grid-rows-2">
|
<section className="mx-auto grid max-w-screen-2xl flex-col gap-6 px-4 pb-4 md:grid-cols-8">
|
||||||
{products.map((product) => (
|
{products.map((product) => (
|
||||||
<ProductCard key={product.id} product={product} />
|
<ProductCard key={product.id} product={product} />
|
||||||
))}
|
))}
|
||||||
|
@ -13,7 +13,7 @@ const nextConfig: NextConfig = {
|
|||||||
formats: ['image/avif', 'image/webp'],
|
formats: ['image/avif', 'image/webp'],
|
||||||
remotePatterns: [
|
remotePatterns: [
|
||||||
{
|
{
|
||||||
protocol: 'http',
|
protocol: 'https',
|
||||||
hostname: '**'
|
hostname: '**'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user