@@ -57,7 +57,7 @@ const queries = [
5757
5858
5959module . exports = {
60- assetPrefix : `https://d9g73a6nhcae6.cloudfront.net` ,
60+ assetPrefix : process . env . ASSET_HOST ,
6161 siteMetadata : {
6262 title : 'Testsigma Tutorials' ,
6363 description : '' ,
@@ -74,9 +74,9 @@ module.exports = {
7474 {
7575 resolve : `gatsby-plugin-s3` ,
7676 options : {
77- bucketName : "tutorials.testsigma.com" ,
77+ bucketName : process . env . BUCKET_NAME ,
7878 protocol : "https" ,
79- hostname : "testsigma.com/tutorials/" ,
79+ hostname : process . env . HOST_NAME ,
8080 generateRedirectObjectsForPermanentRedirects : true
8181 } ,
8282 } ,
@@ -102,14 +102,14 @@ module.exports = {
102102 {
103103 resolve : `gatsby-plugin-freshchat` ,
104104 options : {
105- token : "b905859c-c256-471f-ab0a-a4d0829d27ee" , // process.env.FRESHCHAT_TOKEN,
105+ token : process . env . FRESHCHAT_TOKEN ,
106106 host : "https://wchat.freshchat.com" ,
107107 } ,
108108 } ,
109109 {
110110 resolve : `gatsby-plugin-google-analytics` ,
111111 options : {
112- trackingId : "UA-99606664-1" ,
112+ trackingId : process . env . GA_TRACKING_ID ,
113113 head : false ,
114114 anonymize : true ,
115115 respectDNT : true ,
@@ -120,8 +120,8 @@ module.exports = {
120120 resolve : `gatsby-plugin-google-gtag` ,
121121 options : {
122122 trackingIds : [
123- "G-ZE2Z1J3VPK" , // Google Analytics 4
124- "AW-777462306" , // Google Tag Manager
123+ process . env . GTAG_TRACKING_ID_FOR_GA4 , // Google Analytics 4
124+ process . env . GTAG_TRACKING_ID_FOR_GTAG , // Google Tag Manager
125125 ] ,
126126 pluginConfig : {
127127 head : false ,
0 commit comments