another update

This commit is contained in:
2025-07-24 00:48:27 +03:00
parent dfc8e21db1
commit e0217cbbcb
75 changed files with 5331 additions and 4457 deletions

View File

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