Initial commit - Route Commerce platform

This commit is contained in:
2026-06-01 19:40:55 +00:00
commit 53a9671461
617 changed files with 106132 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
httpAgentOptions: {
keepAlive: false,
},
images: {
remotePatterns: [
{ hostname: "wnzkhezyhnfzhkhiflrp.supabase.co" },
{ hostname: "images.unsplash.com" },
{ hostname: "cdn.shopify.com" },
],
},
devIndicators: {
position: "bottom-left",
},
experimental: {
serverActions: {
bodySizeLimit: '10mb',
},
},
serverExternalPackages: ['@prisma/adapter-pg'],
// Netlify deployment settings
output: 'standalone',
};
export default nextConfig;