59 lines
981 B
JavaScript
59 lines
981 B
JavaScript
export const buildVars = [
|
|
{
|
|
name: "PUBLIC_URL",
|
|
defaultValue: "/",
|
|
},
|
|
{
|
|
name: "REACT_APP_EDITION",
|
|
defaultValue: "community",
|
|
},
|
|
{
|
|
name: "REACT_APP_LANGUAGES",
|
|
defaultValue: "",
|
|
},
|
|
{
|
|
name: "REACT_APP_COMMIT_ID",
|
|
defaultValue: "00000",
|
|
},
|
|
{
|
|
name: "REACT_APP_API_SERVICE_URL",
|
|
defaultValue: "",
|
|
},
|
|
{
|
|
name: "REACT_APP_NODE_SERVICE_URL",
|
|
defaultValue: "",
|
|
},
|
|
{
|
|
name: "REACT_APP_ENV",
|
|
defaultValue: "production",
|
|
},
|
|
{
|
|
name: "REACT_APP_BUILD_ID",
|
|
defaultValue: "",
|
|
},
|
|
{
|
|
name: "REACT_APP_LOG_LEVEL",
|
|
defaultValue: "error",
|
|
},
|
|
{
|
|
name: "REACT_APP_IMPORT_MAP",
|
|
defaultValue: "{}",
|
|
},
|
|
{
|
|
name: "REACT_APP_SERVER_IPS",
|
|
defaultValue: "",
|
|
},
|
|
{
|
|
name: "REACT_APP_BUNDLE_BUILTIN_PLUGIN",
|
|
defaultValue: "",
|
|
},
|
|
{
|
|
name: "REACT_APP_BUNDLE_TYPE",
|
|
defaultValue: "app",
|
|
},
|
|
{
|
|
name: "REACT_APP_DISABLE_JS_SANDBOX",
|
|
defaultValue: "",
|
|
},
|
|
];
|