Kebe77 commited on
Commit
249bf0e
·
verified ·
1 Parent(s): 50e97af

Update next.config.js

Browse files
Files changed (1) hide show
  1. 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;