Moshe Simantov
Moshe Simantov
My opinion is that this feature SHOULD support different settings for folders and files. Many projects prefer to have CamelCase for folders but Kebab for files. I think the best...
I'm not sure this is needed. You can use the alias name with the following ARN: ``` arn:aws:kms:${region}:${account_id}:alias/${alias_name}` ``` For example: ``` arn:aws:kms:us-east-1:1234567890:alias/my/key ```
@depfu refresh
@depfu recreate
Any update or workaround on this?
I think it's solvable if we use primary and secondary renders: https://github.com/facebook/react/issues/19519
There are some workarounds here, but I haven't tried it yet: https://github.com/apollographql/apollo-client/issues/8365
I manage to use this configuration: ```js const panorama = (typeof window !== 'undefined') ? require('videojs-panorama') : () => {}; ```
This is what I using in order to remove the panorama: ```js const canvas = player.getChild('Canvas'); if (!canvas) return; canvas.handleDispose(); // doing nothing, see issue #100 canvas.startAnimation = () =>...