LPX55 commited on
Commit
f6a5834
·
verified ·
1 Parent(s): e0b98a6

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
+ output: 'export',
5
+ images: {
6
+ unoptimized: true,
7
+ },
8
+ trailingSlash: true,
9
+ }
10
+
11
+ module.exports = nextConfig