This commit is contained in:
2026-05-11 16:24:14 +07:00
commit 6a48d6351c
313 changed files with 41936 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
output: "standalone",
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'storage.googleapis.com',
pathname: '/**',
},
{
protocol: "http",
hostname: "localhost",
port: "3001",
pathname: "/**",
},
{
protocol: "http",
hostname: "127.0.0.1",
port: "3001",
pathname: "/**",
}
],
},
};
export default nextConfig;