mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-09 13:05:07 +00:00
11 lines
415 B
JavaScript
11 lines
415 B
JavaScript
|
// To centeralize certain values and URLs as for easier debugging and refactoring
|
||
|
|
||
|
module.exports = {
|
||
|
URLS: {
|
||
|
YT_URL: 'https://www.youtube.com',
|
||
|
YT_MUSIC_URL: 'https://music.youtube.com',
|
||
|
YT_BASE_API: 'https://www.youtube.com/youtubei/v1',
|
||
|
YT_SUGGESTIONS: "https://suggestqueries.google.com/complete",
|
||
|
VT_GITHUB: "https://api.github.com/repos/Frontesque/VueTube",
|
||
|
}
|
||
|
}
|