11 lines
200 B
TypeScript
11 lines
200 B
TypeScript
import multerConfig from "multer";
|
|
|
|
export const multer = multerConfig({
|
|
storage: multerConfig.memoryStorage(),
|
|
limits: {
|
|
fields: 10,
|
|
files: 10,
|
|
fileSize: 1024 * 1024 * 100, // 100 mb
|
|
},
|
|
});
|