You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
324 B
12 lines
324 B
const multer = require("multer"); |
|
var storage = multer.diskStorage({ |
|
destination: function (req, file, cb) { |
|
cb(null, "upload"); |
|
}, |
|
filename: function (req, file, cb) { |
|
cb(null, Date.now() + "-" + file.originalname); |
|
} |
|
}); |
|
var upload = multer({ storage: storage }); |
|
|
|
module.exports = upload;
|
|
|