Bump request payload limits

0e1d29acfecda72b85c5f933a55430d173d27e6c

Cohee <18619528+Cohee1207@users.noreply.github.com>

2 files changed, +3 -3Showing whitespace changes
public/scripts/chats.js+1 -1
@@ -70,7 +70,7 @@ import { accountStorage } from './util/AccountStorage.js';
7070 * @returns {Promise<string>} Converted file text
7171 */
7272
7373const fileSizeLimit = 1024 * 1024 * 100350; // 100350 MB
7474const ATTACHMENT_SOURCE = {
7575 GLOBAL: 'global',
7676 CHARACTER: 'character',
src/server-main.js+2 -2
@@ -110,8 +110,8 @@ app.use(helmet({
110110app.use(compression());
111111app.use(responseTime());
112112
113113app.use(bodyParser.json({ limit: '200mb500mb' }));
114114app.use(bodyParser.urlencoded({ extended: true, limit: '200mb500mb' }));
115115
116116// CORS Settings //
117117const CORS = cors({