Fix webpack issues until we get webpack 5
This commit is contained in:
parent
f5ca670b0a
commit
086d087313
|
@ -2,4 +2,11 @@ module.exports = {
|
|||
presets: [
|
||||
'@vue/cli-plugin-babel/preset',
|
||||
],
|
||||
|
||||
// https://github.com/webpack/webpack/issues/10227
|
||||
// TODO: remove these plugins when we get webpack 5
|
||||
plugins: [
|
||||
'@babel/plugin-proposal-optional-chaining',
|
||||
'@babel/plugin-proposal-nullish-coalescing-operator',
|
||||
],
|
||||
};
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
"vuex": "^3.5.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
|
||||
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
|
||||
"@vue/cli-plugin-babel": "^4.4.6",
|
||||
"@vue/cli-plugin-eslint": "^4.4.6",
|
||||
"@vue/cli-plugin-router": "^4.4.6",
|
||||
|
|
|
@ -299,9 +299,12 @@ export default {
|
|||
type: 'video',
|
||||
continuous: 1,
|
||||
uri: `server://${machineIdentifier}/com.plexapp.plugins.library/library/metadata/${ratingKey}`,
|
||||
repeat: 0,
|
||||
own: 1,
|
||||
includeExternalMedia: 1,
|
||||
includeChapters: 1,
|
||||
includeMarkers: 1,
|
||||
includeGeolocation: 1,
|
||||
includeExternalMedia: 1,
|
||||
},
|
||||
signal,
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue