Svenson1974 commited on
Commit
c9a18fd
·
verified ·
1 Parent(s): f31a189

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
+ images: {
6
+ domains: ['images.unsplash.com', 'via.placeholder.com'],
7
+ },
8
+ output: 'standalone',
9
+ }
10
+
11
+ module.exports = nextConfig