chore: increase max upload size to 1GB
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -23,9 +23,9 @@ app.use(cors({
|
|||||||
credentials: true,
|
credentials: true,
|
||||||
}));
|
}));
|
||||||
|
|
||||||
// Body parsing - increased limit for bulk XML uploads
|
// Body parsing - increased limit for bulk XML uploads (1GB)
|
||||||
app.use(express.json({ limit: '300mb' }));
|
app.use(express.json({ limit: '1gb' }));
|
||||||
app.use(express.urlencoded({ extended: true, limit: '300mb' }));
|
app.use(express.urlencoded({ extended: true, limit: '1gb' }));
|
||||||
|
|
||||||
// Health check
|
// Health check
|
||||||
app.get('/health', (req, res) => {
|
app.get('/health', (req, res) => {
|
||||||
|
|||||||
Reference in New Issue
Block a user