27 lines
501 B
TypeScript
27 lines
501 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "c.pxhere.com",
|
|
pathname: "/images/**",
|
|
},
|
|
{
|
|
protocol: "https",
|
|
hostname: "aromatica.co",
|
|
pathname: "/**",
|
|
},
|
|
{
|
|
protocol: "https",
|
|
hostname: "cafe24img.poxo.com",
|
|
pathname: "/**",
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|