Files
setrip/next.config.ts
T
2026-04-16 16:26:29 +07:00

16 lines
250 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
dangerouslyAllowSVG: true,
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
],
},
};
export default nextConfig;