Files
nextjs14-typeorm-sample/next.config.mjs
2025-06-01 22:21:33 +02:00

15 lines
244 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**"
}
]
}
};
export default nextConfig;