Spaces:
Paused
Paused
Create next.config.js
Browse files- next.config.js +7 -0
next.config.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/** @type {import('next').NextConfig} */
|
| 2 |
+
const nextConfig = {
|
| 3 |
+
output: 'standalone',
|
| 4 |
+
eslint: { ignoreDuringBuilds: true },
|
| 5 |
+
typescript: { ignoreBuildErrors: true }
|
| 6 |
+
}
|
| 7 |
+
module.exports = nextConfig
|