mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-06-17 13:48:45 +02:00
24 lines
768 B
JavaScript
24 lines
768 B
JavaScript
// networkingConstants.js
|
|
//
|
|
// Created by Kalila L. on 8/27/20
|
|
// Copyright 2020 Vircadia contributors.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
|
|
// Interface Metadata Source
|
|
var interfaceMetadataSource = "https://cdn.vircadia.com/dist/launcher/vircadiaMeta.json";
|
|
|
|
// Base CDN URLs
|
|
var contentCDN = "https://content.highfidelity.com/"; // "https://content.vircadia.com/";
|
|
var publicBucketCDN = "http://s3.amazonaws.com/hifi-public/";
|
|
var euCDN = "eu-c-1/";
|
|
var usCDN = "us-c-1/";
|
|
|
|
module.exports = {
|
|
interfaceMetadataSource: interfaceMetadataSource.
|
|
contentCDN: contentCDN,
|
|
publicBucketCDN: publicBucketCDN,
|
|
euCDN: euCDN,
|
|
usCDN: usCDN
|
|
}
|