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 62b9c9c6d7
commit 5d55ce309d
No known key found for this signature in database
GPG Key ID: A1E1F04008AC450D

View File

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