-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnext.config.mjs
More file actions
29 lines (25 loc) · 771 Bytes
/
Copy pathnext.config.mjs
File metadata and controls
29 lines (25 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/** @type {import('next').NextConfig} */
console.log('--------------------------------------------------');
console.log('🔍 Checking Environment Variables during Build:');
console.log('NEXT_PUBLIC_SUPABASE_URL:', process.env.NEXT_PUBLIC_SUPABASE_URL ? '✅ Found' : '❌ MISSING');
console.log('NEXT_PUBLIC_SUPABASE_ANON_KEY:', process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY ? '✅ Found' : '❌ MISSING');
console.log('--------------------------------------------------');
const nextConfig = {
turbopack: {},
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
],
},
typescript: {
ignoreBuildErrors: true,
},
eslint: {
ignoreDuringBuilds: true,
},
allowedDevOrigins: ["*.theopenbuilder.com"],
};
export default nextConfig;