Abp Vnext 的 Vue3 实现版本
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.
 
 
 
 
 
 

15 lines
553 B

function getenv(r) {
var strEnv = '{'+
'"Shortsha": "'+ process.env.SHORTSHA +'",'
+ '"HOSTNAME": "'+ process.env.HOSTNAME +'",'
+ '"RefName": "ValRefName",'
+ '"BuildTime": "ValBuildTime",'
+ '"CommitTitle": "ValTitle",'
+ '"CommitDescription": "ValDescription",'
+ '"PipelineUrl": "ValPipelineUrl",'
+ '"CommitUser": "ValUser",'
+ '"UI_ENVIRONMENT": "'+ process.env.UI_ENVIRONMENT +'"'
+'}';
r.headersOut['Content-Type'] = "application/json; charset=utf-8";
r.return(200, strEnv);
}