/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, async redirects() { return [ { source: "/", destination: "/app", permanent: false, }, ]; }, images: { remotePatterns: [ { protocol: "https", hostname: "tailwindui.com", }, { protocol: "https", hostname: "images.unsplash.com", }, ], }, }; module.exports = nextConfig;