-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnext.config.js
More file actions
34 lines (33 loc) · 1.12 KB
/
Copy pathnext.config.js
File metadata and controls
34 lines (33 loc) · 1.12 KB
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
30
31
32
33
34
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true, // Default setting, you can adjust as needed
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'firebasestorage.googleapis.com',
port: '',
pathname: '/v0/b/**', // Covers typical Firebase Storage URLs
},
{
protocol: 'https',
hostname: 'avatars.githubusercontent.com',
port: '',
pathname: '/u/**', // Covers typical GitHub user avatar URLs
},
{
protocol: 'https', // Protocol (usually https)
hostname: 'lh3.googleusercontent.com', // Hostname for Google User Content
port: '', // Port (usually empty for default)
pathname: '/a/**', // Path pattern for Google profile pics (often starts with /a/)
},
// Add other allowed domains here if needed in the future
],
},
eslint: {
// Warning: This allows production builds to successfully complete even if
// your project has ESLint errors.
ignoreDuringBuilds: true,
},
};
module.exports = nextConfig;