20 lines
327 B
TypeScript
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;
|