Files
roblox/next.config.ts
2025-07-24 04:25:18 +03:00

20 lines
274 B
TypeScript

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