darkvibe314 commited on
Commit
4d41fd2
·
verified ·
1 Parent(s): c630bbc

Create next.config.js

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