Spaces:
Running
Running
Update next.config.ts
Browse files- next.config.ts +8 -1
next.config.ts
CHANGED
|
@@ -25,7 +25,14 @@ const nextConfig: NextConfig = {
|
|
| 25 |
return config;
|
| 26 |
},
|
| 27 |
images: {
|
| 28 |
-
remotePatterns: [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
},
|
| 30 |
};
|
| 31 |
|
|
|
|
| 25 |
return config;
|
| 26 |
},
|
| 27 |
images: {
|
| 28 |
+
remotePatterns: [
|
| 29 |
+
{ hostname: 'huggingface.co' },
|
| 30 |
+
{ hostname: 'ai.google.dev' },
|
| 31 |
+
{ hostname: '*.googleapis.com' }
|
| 32 |
+
],
|
| 33 |
+
},
|
| 34 |
+
env: {
|
| 35 |
+
GEMINI_API_KEY: process.env.GEMINI_API_KEY,
|
| 36 |
},
|
| 37 |
};
|
| 38 |
|