Skip to content

Commit 15b803d

Browse files
author
Josh Hollinshead
committed
Fix defaultMimeType option binding
1 parent 4d31f3b commit 15b803d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ module.exports = {
6161
var dotFolders = this.readConfig('dotFolders');
6262
var serverSideEncryption = this.readConfig('serverSideEncryption');
6363
var batchSize = this.readConfig('batchSize');
64+
var defaultMimeType = this.readConfig('defaultMimeType');
6465

6566
var filesToUpload = distFiles.filter(minimatch.filter(filePattern, { matchBase: true, dot: dotFolders }));
6667

@@ -78,7 +79,8 @@ module.exports = {
7879
manifestPath: manifestPath,
7980
cacheControl: cacheControl,
8081
expires: expires,
81-
batchSize: batchSize
82+
batchSize: batchSize,
83+
defaultMimeType: defaultMimeType
8284
};
8385

8486
if (serverSideEncryption) {

0 commit comments

Comments
 (0)