import type { NextConfig } from "next"; const nextConfig: NextConfig = { transpilePackages: ["@directus/sdk"], images: { remotePatterns: [ { protocol: "http", hostname: "cms.basecafe.jp", // Directus の IP port: "8050", pathname: "/assets/**", }, { protocol: "https", hostname: "cms.basecafe.jp", // 将来 SSL 化した場合用 pathname: "/assets/**", }, ], }, }; export default nextConfig;