owl-stream/next.config.js

12 lines
208 B
JavaScript

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