Spaces:
Build error
Build error
Upload next.config.js with huggingface_hub
Browse files- next.config.js +12 -0
next.config.js
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/** @type {import('next').NextConfig} */
|
| 2 |
+
const nextConfig = {
|
| 3 |
+
experimental: {
|
| 4 |
+
appDir: false,
|
| 5 |
+
},
|
| 6 |
+
output: 'standalone',
|
| 7 |
+
images: {
|
| 8 |
+
domains: ['cdn.britannica.com', 'localhost'],
|
| 9 |
+
},
|
| 10 |
+
}
|
| 11 |
+
|
| 12 |
+
module.exports = nextConfig
|