Coffee Required Git
coffeerequired
tvemesto-flowx / next.config.ts
19 lines 306 B
Raw
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
import type { NextConfig } from class="c-str">"next"; const nextConfig: NextConfig = { output: class="c-str">"standalone", experimental: { serverActions: { bodySizeLimit: class="c-str">"2mb", }, }, eslint: { ignoreDuringBuilds: true, }, typescript: { ignoreBuildErrors: false, }, }; export default nextConfig;