mirror of
https://github.com/marcogll/TaxHacker_s23.git
synced 2026-01-13 13:25:18 +00:00
15 lines
245 B
TypeScript
15 lines
245 B
TypeScript
import type { NextConfig } from "next"
|
|
|
|
const nextConfig: NextConfig = {
|
|
eslint: {
|
|
ignoreDuringBuilds: true, // TODO: fixme
|
|
},
|
|
experimental: {
|
|
serverActions: {
|
|
bodySizeLimit: "256mb",
|
|
},
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|