Work on profiles page

This commit is contained in:
2025-05-20 14:53:53 -05:00
parent d47ed16700
commit 3dffa71a89
9 changed files with 414 additions and 75 deletions

View File

@ -6,6 +6,7 @@ import './src/env.js';
/** @type {import("next").NextConfig} */
const config = {
output: 'standalone',
images: {
remotePatterns: [
{
@ -14,6 +15,11 @@ const config = {
},
],
},
experimental: {
serverActions: {
bodySizeLimit: '10mb',
},
},
};
export default config;