diff --git a/docs/developer.md b/docs/developer.md index 46d83ce0..2087074e 100644 --- a/docs/developer.md +++ b/docs/developer.md @@ -107,3 +107,13 @@ npm run preview ``` Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information. + +### Experimental Frontend Features + +To use experimental frontend features, add `NUXT_BUILD_EXPERIMENTAL=true` tu run and build command, like: + +``` +NUXT_BUILD_EXPERIMENTAL=true npm run dev +``` + +**Note:** This function is only for developers and testers who can do without support. diff --git a/frontend/components/ConfigPlayout.vue b/frontend/components/ConfigPlayout.vue index dabd83a4..f4733530 100644 --- a/frontend/components/ConfigPlayout.vue +++ b/frontend/components/ConfigPlayout.vue @@ -19,6 +19,7 @@ v-if=" name.toString() !== 'startInSec' && name.toString() !== 'lengthInSec' && + !(name.startsWith('vtt_') && !config.public.buildExperimental) && !(name.toString() === 'path' && key.toString() === 'storage') " > @@ -93,6 +94,7 @@