Spaces:
Paused
Paused
Create next.config.mjs
Browse files- next.config.mjs +6 -0
next.config.mjs
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/** @type {import('next').NextConfig} */
|
| 2 |
+
const nextConfig = {
|
| 3 |
+
// Optional: Useful if HF puts it behind a specific subpath
|
| 4 |
+
// basePath: '/my-space',
|
| 5 |
+
};
|
| 6 |
+
export default nextConfig;
|