feat: setup Supabase Storage bucket for restaurant assets and add mobile upload helper

This commit is contained in:
AyrisAI
2026-08-20 17:30:22 +03:00
parent 5122ec24fc
commit 5cbd80326f
3 changed files with 75 additions and 0 deletions
+12
View File
@@ -2,6 +2,18 @@
const nextConfig = {
reactStrictMode: true,
output: "standalone",
images: {
remotePatterns: [
{
protocol: "https",
hostname: "*.supabase.co",
},
{
protocol: "https",
hostname: "images.unsplash.com",
},
],
},
};
export default nextConfig;