/** @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