legends810 commited on
Commit
698a798
·
verified ·
1 Parent(s): 5727dc5

Update next.config.ts

Browse files
Files changed (1) hide show
  1. next.config.ts +8 -1
next.config.ts CHANGED
@@ -25,7 +25,14 @@ const nextConfig: NextConfig = {
25
  return config;
26
  },
27
  images: {
28
- remotePatterns: [new URL('https://huggingface.co/**')],
 
 
 
 
 
 
 
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