From ad204a6b2f3f7fde199770766c9942081817d57d Mon Sep 17 00:00:00 2001 From: Frank Date: Tue, 2 Nov 2021 10:12:50 -0400 Subject: [PATCH] Added environment var to pipeline --- azure-pipelines.yml | 4 +++- vue.release.config.js | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 36102b907..95c066c74 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -26,7 +26,7 @@ resources: type: github name: Safelite/AzureDevOps endpoint: Safelite - ref: DigitalConsumer #refs/tags/t5.3.4 + ref: refs/tags/t5.3.8 variables: - group: Digital-Infrastructure @@ -74,3 +74,5 @@ stages: clearFolder: true deployFolder: '' region: us-east-1 + appDeployVariables: + __VUE_APP_CONSUMER_API_GATEWAY__: $(__VUE_APP_CONSUMER_API_GATEWAY__) \ No newline at end of file diff --git a/vue.release.config.js b/vue.release.config.js index 5232721e5..d0be4bb59 100644 --- a/vue.release.config.js +++ b/vue.release.config.js @@ -1,3 +1,5 @@ +process.env.VUE_APP_CONSUMER_API_GATEWAY = "__VUE_APP_CONSUMER_API_GATEWAY__"; + module.exports = { outputDir: "dist/fmg", publicPath: "/fmg",