Spaces:
Build error
Build error
Upload next.config.js with huggingface_hub
Browse files- 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
|