import type { NextConfig } from 'next'; const nextConfig: NextConfig = { output: 'standalone', reactStrictMode: true, sassOptions: { silenceDeprecations: ['legacy-js-api'], }, images: { remotePatterns: [ { protocol: 'https', hostname: '**', }, ], }, async redirects() { return [ { source: '/', destination: '/dashboard', permanent: false, }, ]; }, }; export default nextConfig;