pradipp commited on
Commit
6ec1e36
·
verified ·
1 Parent(s): 471ab24

Upload next.config.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. next.config.js +10 -0
next.config.js ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ /** @type {import('next').NextConfig} */
2
+ const nextConfig = {
3
+ reactStrictMode: true,
4
+ swcMinify: true,
5
+ env: {
6
+ NEXT_PUBLIC_GOOGLE_CLIENT_ID: process.env.NEXT_PUBLIC_GOOGLE_CLIENT_ID,
7
+ },
8
+ }
9
+
10
+ module.exports = nextConfig