Files
digital-home-dashboard/next.config.js
2026-04-15 20:31:28 +00:00

12 lines
251 B
JavaScript

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