1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 10:49:28 +02:00

Compat embed with ios 11

This commit is contained in:
Chocobozzz 2021-09-01 15:55:54 +02:00
parent 3419e0e1fe
commit 6527eb0ccf
No known key found for this signature in database
GPG key ID: 583A612D890159BE
3 changed files with 113 additions and 6 deletions

View file

@ -74,6 +74,23 @@ module.exports = function () {
}
]
},
{
test: /\.js$/,
use: [
{
loader: 'babel-loader',
options: {
presets: [
[
'@babel/preset-env', {
targets: 'last 1 Chrome version, last 2 Edge major versions, Firefox ESR, Safari >= 11, ios_saf >= 11'
}
]
]
}
}
]
},
{
test: /\.(sass|scss)$/,