15 lines
247 B
TypeScript
15 lines
247 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "8ded8880.delivery.rocketcdn.me",
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|