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

32 lines
543 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",
}
]
},
headers: async () => {
return [
{
headers: [
{
source: "/:path*",
key: "X-Frame-Options",
value: "ALLOWALL"
},
]
}
];
},
};
export default nextConfig;