basecafe.jp/next.config.ts
2025-10-28 20:52:11 +09:00

23 lines
443 B
TypeScript

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;