summary refs log tree commit diff
path: root/src/util/multer.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-12 20:16:45 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-12 20:16:45 +0200
commit512375f6ed6f7fe895f0ebbb9494e7d2feb7a525 (patch)
treed2c68ddd310a7b50a46979671566e5ae6c1bf04c /src/util/multer.ts
parentMerge branch 'cdn' (diff)
downloadserver-512375f6ed6f7fe895f0ebbb9494e7d2feb7a525.tar.xz
:sparkles: cdn
Diffstat (limited to 'src/util/multer.ts')
-rw-r--r--src/util/multer.ts10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/util/multer.ts b/src/util/multer.ts
deleted file mode 100644

index bfdf6aff..00000000 --- a/src/util/multer.ts +++ /dev/null
@@ -1,10 +0,0 @@ -import multerConfig from "multer"; - -export const multer = multerConfig({ - storage: multerConfig.memoryStorage(), - limits: { - fields: 10, - files: 10, - fileSize: 1024 * 1024 * 100, // 100 mb - }, -});