vision-agent / next.config.js
wuyiqunLu
feat: support png and mp4 rendering (#73)
1a37272 unverified
/** @type {import('next').NextConfig} */
module.exports = {
// reactStrictMode: false,
images: {
remotePatterns: [
{
protocol: 'https',
hostname: '**',
},
],
},
experimental: {
serverActions: {
bodySizeLimit: '30mb',
},
serverComponentsExternalPackages: ['pino', 'pino-loki'],
},
...(process.env.USE_STANDALONE_BUILD ? { output: 'standalone' } : {}),
};