mirror of
https://github.com/SkyLinkHostingLLC/Website.git
synced 2026-02-22 00:12:22 -05:00
15 lines
264 B
TypeScript
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;
|