-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnext.config.ts
More file actions
22 lines (21 loc) · 755 Bytes
/
Copy pathnext.config.ts
File metadata and controls
22 lines (21 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
// Allow network access for mobile testing
experimental: {
serverActions: {
allowedOrigins: ['localhost:3000', '192.168.0.102:3000', '192.168.0.106:3000', '192.168.1.102:3000', '192.168.1.106:3000']
}
},
images: {
remotePatterns: [
{ protocol: 'https', hostname: 'localhost' },
{ protocol: 'https', hostname: 'i.pravatar.cc' },
{ protocol: 'https', hostname: 'images.unsplash.com' },
{ protocol: 'https', hostname: 'media.prothomalo.com' },
{ protocol: 'https', hostname: 'www.redcross.org' },
{ protocol: 'https', hostname: 'qrbwarjduncwgglandiz.supabase.co' }
],
},
};
export default nextConfig;