feat(env): add GTAG_MEASUREMENT_ID to env and config

- Added GTAG_MEASUREMENT_ID to .env.example
- Updated 'GTAG_MEASUREMENT_ID' in config/app.php
- Modified script tag in googletag.blade.php to use dynamic ID
This commit is contained in:
Rico van Zelst
2024-02-24 15:44:57 +01:00
parent 93ce805af6
commit 13ba72c897
3 changed files with 6 additions and 2 deletions

View File

@@ -200,4 +200,6 @@ return [
: (env('IS_STAGING')
? 'https://staging.heimerdinger.lol'
: 'https://heimerdinger.lol'),
'GTAG_MEASUREMENT_ID' => env('GTAG_MEASUREMENT_ID', 'G-XXXXXXXXXX'),
];