// before: an id that only means something inside Vimeo import Player from '@vimeo/player'; const player = new Player('container', { id: 123456789 }); // after: a URL you control. Everything below this line is unchanged. import Player from '@player/static'; const player = new Player('container', { url: 'https://cdn.example.com/video.mp4' });