From 569b13d08872bf4e16a4aa8a4685ad1ab9b2f32e Mon Sep 17 00:00:00 2001 From: Elliot Voris Date: Tue, 26 Sep 2023 11:04:17 -0500 Subject: [PATCH] add configuration for test gtag container for this pr preview --- src/analytics-module.js | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/src/analytics-module.js b/src/analytics-module.js index 51181a1b..ff42c5c1 100644 --- a/src/analytics-module.js +++ b/src/analytics-module.js @@ -20,6 +20,18 @@ module.exports = () => ({ name: 'facebook-domain-verification', content: 'll8iy5eqaqpremxnd6bo2qg2qjxrtj', }, + }, + { + tagName: 'script', + innerHTML: ` + + + + ` } ], preBodyTags: [ @@ -38,8 +50,15 @@ module.exports = () => ({ ` + }, + { + tagName: 'noscript', + innerHTML: ` + + ` } ], }; }, -}); \ No newline at end of file +});