Website/next.config.ts
2025-02-19 16:19:14 -05:00

15 lines
264 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "cdn.skylinkhosting.com",
pathname: "/**",
},
],
},
};
export default nextConfig;