Turn of image optimization

> Image Optimization using Next.js' default loader is not compatible with `next export`.

We currently deploy to Netlify via `next export`
This commit is contained in:
Marcus Blättermann 2022-12-15 00:40:48 +01:00
parent b3a4bc40a7
commit a402fa7970
No known key found for this signature in database
GPG Key ID: A1E1F04008AC450D

View File

@ -33,6 +33,7 @@ const nextConfig = withPWA(
typescript: {
ignoreBuildErrors: true,
},
images: { unoptimized: true },
})
)