Skip to content

Commit

Permalink
Merge pull request #2086 from owncloud/bugfix/mediaviewer-ie11
Browse files Browse the repository at this point in the history
IE11 support for media-viewer
  • Loading branch information
DeepDiver1975 authored Sep 30, 2019
2 parents 750d2f0 + 6970f6a commit 44b32a4
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion apps/media-viewer/webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,27 @@ module.exports = {
options: {
rootMode: 'upward'
}
}, {
},
{
test: /\.jsx?$/,
include: /node_modules\/(?=(query-string|split-on-first|strict-uri-encode)\/).*/,
use: {
loader: 'babel-loader',
options: {
presets: [
[
'@babel/preset-env',
{
targets: {
ie: '11'
}
}
]
]
}
}
},
{
test: /\.vue$/,
loader: 'vue-loader'
}, {
Expand Down

0 comments on commit 44b32a4

Please sign in to comment.