anycoder-5df874db / next.config.js
Svenson1974's picture
Upload next.config.js with huggingface_hub
c9a18fd verified
Raw
History Blame Contribute Delete
238 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
images: {
domains: ['images.unsplash.com', 'via.placeholder.com'],
},
output: 'standalone',
}
module.exports = nextConfig