21 lines
608 B
JavaScript
21 lines
608 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
eslint: {
|
|
// Temporary: repository has existing no-explicit-any violations.
|
|
// Keep dedicated lint stage in CI; do not block production build on legacy lint debt.
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
typescript: {
|
|
// Temporary: repository has existing unrelated type errors in billing/stripe flows.
|
|
// Keep separate typecheck/lint quality gates while allowing production image build.
|
|
ignoreBuildErrors: true,
|
|
},
|
|
experimental: {
|
|
serverActions: {
|
|
bodySizeLimit: "2mb",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|