This commit is contained in:
asyncnomi 2023-01-09 11:05:28 +01:00
parent e64ba35d3a
commit 6c7d0801c2

View file

@ -1,7 +1,4 @@
const fastify = require('fastify')({
logger: true,
bodyLimit: 10485760
})
const fastify = require('fastify')({ logger: true })
const fs = require('fs');
const path = require('path')
const CryptoJS = require("crypto-js");
@ -28,7 +25,8 @@ let MaxAmountCrepe = 10;
let Supplements = ["nature", "sucre", "nutella", "confiture"];
fastify.addContentTypeParser('application/json', {
parseAs: 'string'
parseAs: 'string',
bodyLimit: 10485760
}, function(req, body, done) {
try {
var json = JSON.parse(body)