Skip to content

Commit

Permalink
chore(doc): fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
josephmcg committed Apr 6, 2022
1 parent 5a0d649 commit cc1cf66
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ export const Config = {
routingMiddleware: {
prerequisitesCheckBypass: ['auth', 'setup'],
},
nsfwPictureLimit: 1048576 * 8, // 8MB - arbitrary image limit for nsfw scan - binary
personalFilesLimit: 1000000000 * 4, // 4GB - free tier limit - decimal because stoarge systems typically are
nsfwVideoLimit: 1073741824 * 2, // 2GB - array buffers larger than this crash - binary
nsfwPictureLimit: 1048576 * 8, // 8MB - images will be scaled down to this value if possible to prevent memory issues - binary
personalFilesLimit: 1000000000 * 4, // 4GB - free tier limit - decimal
nsfwVideoLimit: 1073741824 * 2, // 2GB - videos larger than this crash - binary
regex: {
// identify if a file type is embeddable image
image: '^.*.(apng|avif|gif|jpg|jpeg|jfif|pjpeg|pjp|png|svg|webp)$',
Expand Down

0 comments on commit cc1cf66

Please sign in to comment.