This repository has been archived on 2025-09-03. You can view files and clone it, but cannot push or open issues or pull requests.
Files
web-old/next.config.ts
2024-10-27 20:12:54 +01:00

20 lines
327 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
sassOptions: {
silenceDeprecations: ['legacy-js-api'],
},
images: {
remotePatterns: [
{
hostname: "cdn.sanity.io",
pathname: "/images/**",
protocol: "https",
}
]
},
};
export default nextConfig;