22 lines
366 B
TypeScript
22 lines
366 B
TypeScript
|
|
import type { NextConfig } from 'next';
|
||
|
|
|
||
|
|
const nextConfig: NextConfig = {
|
||
|
|
output: 'standalone',
|
||
|
|
reactStrictMode: true,
|
||
|
|
poweredByHeader: false,
|
||
|
|
compress: true,
|
||
|
|
experimental: {
|
||
|
|
serverActions: {
|
||
|
|
bodySizeLimit: '10mb',
|
||
|
|
},
|
||
|
|
},
|
||
|
|
// Logging configuration
|
||
|
|
logging: {
|
||
|
|
fetches: {
|
||
|
|
fullUrl: true,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
};
|
||
|
|
|
||
|
|
export default nextConfig;
|