set the mime type in the download blob

This commit is contained in:
Danny Coates 2017-08-09 12:56:32 -07:00
parent 626e578acb
commit 193664a8e8
No known key found for this signature in database
GPG key ID: 4C442633C62E00CB
5 changed files with 40 additions and 24 deletions

View file

@ -14,8 +14,15 @@ module.exports = {
{
test: /\.js$/,
loaders: 'babel-loader',
include: [path.resolve(__dirname, 'frontend'), path.resolve(__dirname, 'node_modules/testpilot-ga/src')],
query: { babelrc: false, presets: ['es2015', 'stage-2'], plugins: ['add-module-exports'] }
include: [
path.resolve(__dirname, 'frontend'),
path.resolve(__dirname, 'node_modules/testpilot-ga/src')
],
query: {
babelrc: false,
presets: ['es2015', 'stage-2'],
plugins: ['add-module-exports']
}
}
]
}