diff --git a/changes/changelog.d/935.bugfix b/changes/changelog.d/935.bugfix
new file mode 100644
index 0000000000000000000000000000000000000000..a7fa51db482a04ded5541eb805363eb2b8b5dafd
--- /dev/null
+++ b/changes/changelog.d/935.bugfix
@@ -0,0 +1 @@
+Fixed an issue with embed player CSS being purged during build (#935)
\ No newline at end of file
diff --git a/front/vue.config.js b/front/vue.config.js
index ffaf1cede62e5d616899ef1cac6eef791f6f908b..7c3d47ef43793acbb2d4a33edba2a98c8d1da60d 100644
--- a/front/vue.config.js
+++ b/front/vue.config.js
@@ -19,7 +19,9 @@ plugins.push(
       path.join(__dirname, './**/*.vue'),
       path.join(__dirname, './src/**/*.js')
     ]),
-    whitelist: ['scale']
+    whitelist: ['scale'],
+    whitelistPatterns:[/plyr/],
+    whitelistPatternsChildren:[/plyr/]
   }),
 )
 module.exports = {