mirror of
https://github.com/BradNut/weddingsite
synced 2025-09-08 17:40:36 +00:00
29 lines
493 B
JavaScript
29 lines
493 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
compiler: {
|
|
styledComponents: true,
|
|
},
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "res.cloudinary.com",
|
|
},
|
|
{
|
|
protocol: "https",
|
|
hostname: "via.placeholder.com",
|
|
},
|
|
{
|
|
protocol: "https",
|
|
hostname: "picsum.photos",
|
|
},
|
|
],
|
|
formats: ["image/avif", "image/webp"],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|