You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to use this in an Angular 17.1.2 app set for the new ESM build @angular-devkit/build-angular:application.
I import this in a stand alone component:
Hi there @instantgis,
Thank you for bringing this to our attention! We're aware of this issue, it holds a high priority for resolution.
We will report here once a fix is deployed.
Thanks again!
Tamara
I am trying to use this in an Angular 17.1.2 app set for the new ESM build @angular-devkit/build-angular:application.
I import this in a stand alone component:
import cloudinary from 'cloudinary-video-player';
When I try to use it:
ngOnInit(): void {
cloudinary.videoPlayer('player', {
cloudName: 'demo'
});
}
I get an error on cloudinary.videoPlayer
Property 'videoPlayer' does not exist on type 'typeof VideoPlayer'
I go to definition on cloudinary-video-player and I see squiggles on
import { VideoJsPlayerOptions } from 'video.js';
Module '"video.js"' has no exported member 'VideoJsPlayerOptions'. Did you mean to use 'import VideoJsPlayerOptions from "video.js"' instead?
What am I doing wrong?
Anyone has this working in Angular even if its an earlier version?
I want to use this because of the analytics features. I am using
The text was updated successfully, but these errors were encountered: