Files
next-go-blog/next.config.ts
Beyhan Oğur 6d95e27114 first commit
2026-04-26 22:16:43 +03:00

20 lines
323 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
images: {
remotePatterns: [
{
protocol: "http",
hostname: "localhost",
},
{
protocol: "http",
hostname: "127.0.0.1",
},
],
},
};
export default nextConfig;