Update index.js
Browse files
index.js
CHANGED
@@ -11,6 +11,11 @@ const upload = multer();
|
|
11 |
app.use(express.static('public'));
|
12 |
app.use(bodyParser.json());
|
13 |
app.use(bodyParser.urlencoded({ extended: true }));
|
|
|
|
|
|
|
|
|
|
|
14 |
|
15 |
function compressHtmlForLlm(html, options = {}) {
|
16 |
const operationStatus = {
|
|
|
11 |
app.use(express.static('public'));
|
12 |
app.use(bodyParser.json());
|
13 |
app.use(bodyParser.urlencoded({ extended: true }));
|
14 |
+
// Increase JSON body parser limit
|
15 |
+
app.use(express.json({limit: '10mb'}));
|
16 |
+
// If you're also using URL-encoded parser
|
17 |
+
app.use(express.urlencoded({limit: '10mb', extended: true}));
|
18 |
+
|
19 |
|
20 |
function compressHtmlForLlm(html, options = {}) {
|
21 |
const operationStatus = {
|