@ccci/micro-server 1.0.181 → 1.0.182
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -301057,7 +301057,7 @@ class ApplicationServer {
|
|
|
301057
301057
|
ApplicationServer.app.use(import_express.default.json());
|
|
301058
301058
|
ApplicationServer.app.use(import_express_fileupload.default());
|
|
301059
301059
|
ApplicationServer.app.use(import_express.default.json({ limit: "500mb" }));
|
|
301060
|
-
ApplicationServer.app.use(import_express.default.urlencoded({ limit: "500mb", extended: true }));
|
|
301060
|
+
ApplicationServer.app.use(import_express.default.urlencoded({ limit: "500mb", extended: true, parameterLimit: 5000000 }));
|
|
301061
301061
|
const db = new DatabaseConnector(process.cwd());
|
|
301062
301062
|
const conn = await DatabaseConnector.init();
|
|
301063
301063
|
await db.initializeModels();
|