mirror of
https://github.com/vas3k/TaxHacker.git
synced 2026-02-19 21:09:21 -06: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: "100mb",
|
|
},
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|