Update next.config.js
Browse files- next.config.js +7 -0
next.config.js
CHANGED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/** @type {import('next').NextConfig} */
|
| 2 |
+
const nextConfig = {
|
| 3 |
+
images: { unoptimized: true },
|
| 4 |
+
typescript: { ignoreBuildErrors: true },
|
| 5 |
+
eslint: { ignoreDuringBuilds: true }
|
| 6 |
+
};
|
| 7 |
+
module.exports = nextConfig;
|