Files
digital-home-dashboard/next.config.js
Cosmo ac279a672d
Some checks failed
Build & Deploy Dashboard / deploy (push) Failing after 1m2s
fix: add SessionProvider to fix useSession SSR crash
2026-04-16 09:02:07 +00:00

15 lines
316 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
experimental: {
missingSuspenseWithCSRBailout: false,
},
images: {
remotePatterns: [
{ protocol: 'https', hostname: '**' },
{ protocol: 'http', hostname: '**' },
],
},
}
module.exports = nextConfig