Files
gunbuilder-next-tailwind/next.config.ts
2025-06-29 09:20:25 -04:00

17 lines
272 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'placehold.co',
port: '',
pathname: '/**',
},
],
},
};
export default nextConfig;