This commit is contained in:
2026-03-26 08:09:01 +03:30
parent 5b10807004
commit 333bc0c69e
37 changed files with 940 additions and 575 deletions

View File

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