Disable file uploads by default until the UX is better

This commit is contained in:
Pavel Djundik 2018-09-03 10:37:32 +03:00 committed by GitHub
parent 9d5de22d94
commit 6d2bde023f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -156,7 +156,7 @@ module.exports = {
// `-1` disables the file size limit and allows files of any size. **Use at
// your own risk.** This value is set to `10240` kilobytes by default.
fileUpload: {
enable: true,
enable: false,
maxFileSize: 10240,
},