You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
424 B
14 lines
424 B
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* @providesModule site-constants
|
|
* @flow
|
|
*/
|
|
|
|
// NOTE: We can't just use `location.toString()` because when we are rendering
|
|
// the SSR part in node.js we won't have a proper location.
|
|
const urlRoot = 'https://reactjs.org';
|
|
const version = '18.2.0';
|
|
const babelURL = 'https://unpkg.com/babel-standalone@6.26.0/babel.min.js';
|
|
|
|
export {babelURL, urlRoot, version};
|
|
|