Spaces:
Runtime error
Runtime 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 |
+
images: {
|
| 6 |
+
domains: ['cdn.britannica.com', 'huggingface.co', 'images.unsplash.com'],
|
| 7 |
+
},
|
| 8 |
+
}
|
| 9 |
+
|
| 10 |
+
module.exports = nextConfig
|