Files
YTChatHub/client/next.config.js
T

12 lines
196 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
experimental: {
serverActions: {
bodySizeLimit: '2mb'
}
}
};
module.exports = nextConfig;