mycro-zine/web/next.config.js

20 lines
330 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
experimental: {
serverActions: {
bodySizeLimit: '10mb',
},
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'zine.jeffemmett.com',
},
],
},
};
module.exports = nextConfig;