2025-10-08 20:55:43 +09:00
|
|
|
import type { NextConfig } from "next";
|
|
|
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
|
|
|
|
/* config options here */
|
2025-10-13 18:06:46 +09:00
|
|
|
images: {
|
|
|
|
|
remotePatterns: [
|
|
|
|
|
{
|
|
|
|
|
protocol: "https",
|
|
|
|
|
hostname: "c.pxhere.com",
|
|
|
|
|
pathname: "/images/**",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
protocol: "https",
|
|
|
|
|
hostname: "aromatica.co",
|
|
|
|
|
pathname: "/**",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
protocol: "https",
|
|
|
|
|
hostname: "cafe24img.poxo.com",
|
|
|
|
|
pathname: "/**",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
2025-10-08 20:55:43 +09:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|