forked from zaidmukaddam/scira-mcp-chat
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathnext.config.ts
More file actions
31 lines (26 loc) · 723 Bytes
/
Copy pathnext.config.ts
File metadata and controls
31 lines (26 loc) · 723 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
30
31
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'lh3.googleusercontent.com',
},
],
},
// Optimize for development
reactStrictMode: true,
// Reduce source map size in development
productionBrowserSourceMaps: false,
// TypeScript and ESLint optimizations
typescript: {
// During development, you might want to temporarily set this to true
// to skip type checking for faster builds
ignoreBuildErrors: false,
},
eslint: {
// During development builds, you might want to temporarily set this to true
ignoreDuringBuilds: false,
},
};
export default nextConfig;