We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d31f3b commit 15b803dCopy full SHA for 15b803d
index.js
@@ -61,6 +61,7 @@ module.exports = {
61
var dotFolders = this.readConfig('dotFolders');
62
var serverSideEncryption = this.readConfig('serverSideEncryption');
63
var batchSize = this.readConfig('batchSize');
64
+ var defaultMimeType = this.readConfig('defaultMimeType');
65
66
var filesToUpload = distFiles.filter(minimatch.filter(filePattern, { matchBase: true, dot: dotFolders }));
67
@@ -78,7 +79,8 @@ module.exports = {
78
79
manifestPath: manifestPath,
80
cacheControl: cacheControl,
81
expires: expires,
- batchSize: batchSize
82
+ batchSize: batchSize,
83
+ defaultMimeType: defaultMimeType
84
};
85
86
if (serverSideEncryption) {
0 commit comments