mvbhr commited on
Commit
0197284
·
verified ·
1 Parent(s): 22227e8

Upload next.config.js with huggingface_hub

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