tommytracx commited on
Commit
4aca26f
·
verified ·
1 Parent(s): f08199b

Upload next.config.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. next.config.js +11 -0
next.config.js ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /** @type {import('next').NextConfig} */
2
+ const nextConfig = {
3
+ reactStrictMode: true,
4
+ swcMinify: true,
5
+ output: 'standalone',
6
+ images: {
7
+ unoptimized: true
8
+ }
9
+ }
10
+
11
+ module.exports = nextConfig