vuetube
Version:
A fast, lightweight, lazyload vue component acting as a thin layer over the YouTube IFrame Player API which renders fast
19 lines (16 loc) • 652 B
JavaScript
/**
* YouTube hosts
*/
var DEFAULT_HOST = 'https://www.youtube.com';
var NO_COOKIES_HOST = 'https://www.youtube-nocookie.com';
/**
* Origins that are in the critical path
*/
var GOOGLE_ADS_URL = 'https://googleads.g.doubleclick.net';
var GOOGLE_FONTS_URL = 'https://fonts.gstatic.com';
var GOOGLE_URL = 'https://google.com';
var YTIMG_URL = 'https://i.ytimg.com';
var GSTATIC_URL = 'https://www.gstatic.com';
var YT3_URL = 'https://yt3.ggpht.com';
var YOUTUBE_API_URL = 'https://www.youtube.com/iframe_api';
export { DEFAULT_HOST, GOOGLE_ADS_URL, GOOGLE_FONTS_URL, GOOGLE_URL, GSTATIC_URL, NO_COOKIES_HOST, YOUTUBE_API_URL, YT3_URL, YTIMG_URL };