v4.5 Demo initial commit
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
/** @type {import('next').NextConfig} */
|
||||
const nextConfig = {
|
||||
experimental: {
|
||||
serverActions: {
|
||||
bodySizeLimit: "1gb",
|
||||
},
|
||||
},
|
||||
eslint: {
|
||||
// Disable ESLint during production builds (fix existing code issues later)
|
||||
ignoreDuringBuilds: true,
|
||||
},
|
||||
typescript: {
|
||||
// Disable TypeScript errors during builds (fix existing code issues later)
|
||||
ignoreBuildErrors: true,
|
||||
},
|
||||
// Use standalone output for Docker deployment
|
||||
output: 'standalone',
|
||||
}
|
||||
|
||||
module.exports = nextConfig
|
||||
Reference in New Issue
Block a user