21 lines
346 B
TypeScript
21 lines
346 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
};
|
|
|
|
module.exports = {
|
|
experimental: {
|
|
serverActions: {
|
|
bodySizeLimit: '50mb',
|
|
},
|
|
proxyClientMaxBodySize: '50mb',
|
|
},
|
|
images: {
|
|
qualities: [25, 50, 75, 100],
|
|
},
|
|
output: "standalone",
|
|
}
|
|
|
|
export default nextConfig;
|