mirror of
https://github.com/vas3k/TaxHacker.git
synced 2026-05-13 01:49:27 -05: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
|