Files
gunbuilder-next-tailwind/next.config.ts

17 lines
272 B
TypeScript
Raw Permalink Normal View History

2025-06-29 05:28:04 -04:00
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
2025-06-29 09:20:25 -04:00
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'placehold.co',
port: '',
pathname: '/**',
},
],
},
2025-06-29 05:28:04 -04:00
};
export default nextConfig;