got webpack production mode running

This commit is contained in:
Danny Coates 2018-07-13 11:13:09 -07:00
parent 1a78f57515
commit 787d227761
No known key found for this signature in database
GPG key ID: 4C442633C62E00CB
7 changed files with 51 additions and 138 deletions

View file

@ -34,6 +34,7 @@ async function decryptStream(request) {
const headers = {
'Content-Disposition': 'attachment; filename=' + file.filename,
'Content-Type': file.type,
'Content-Length': file.size
};
@ -61,6 +62,7 @@ self.onmessage = event => {
const info = {
keychain: new Keychain(event.data.key),
filename: event.data.filename,
type: event.data.type,
size: event.data.size,
progress: 0,
cancelled: false