I'm using flickity with the cdn, but when it loads the page does not work. I already put the script in index.html, but it does not work
component.ts
declare var jquery:any;
declare var $ :any;
export class ProfileComponent implements OnInit {
constructor() {
$('.carousel-category').flickity({
freeScroll: true,
contain: true,
prevNextButtons: false,
pageDots: false
})
}
}