Files
hosting-files/next.config.ts
T
orohi 8bb436ea4f first commit
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-06 14:59:02 +03:00

15 lines
219 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
],
},
};
export default nextConfig;