anycoder-06d37e02 / next.config.js
Jensin's picture
Upload next.config.js with huggingface_hub
915b712 verified
raw
history blame contribute delete
423 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
images: {
domains: ['i.ytimg.com', 'img.youtube.com'],
},
experimental: {
serverActions: true,
},
async redirects() {
return [
{
source: '/github',
destination: 'https://github.com/vercel/next.js',
permanent: true,
},
]
},
}
module.exports = nextConfig