Skip to content

Commit

Permalink
Update next-google-analytics to work with .env files (#16529)
Browse files Browse the repository at this point in the history
Changes the name of the environment variable to `NEXT_PUBLIC_GA_TRACKING_ID`
  • Loading branch information
jaredpalmer authored Aug 25, 2020
1 parent 35a90d0 commit 65648ec
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/next-plugin-google-analytics/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"nextjs": {
"name": "Google Analytics",
"required-env": [
"GA_TRACKING_ID"
"NEXT_PUBLIC_GA_TRACKING_ID"
]
},
"peerDependencies": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ export default async function headTags() {
<>
<script
async
src={`https://www.googletagmanager.com/gtag/js?id=${process.env.GA_TRACKING_ID}`}
src={`https://www.googletagmanager.com/gtag/js?id=${process.env.NEXT_PUBLIC_GA_TRACKING_ID}`}
/>
<script
dangerouslySetInnerHTML={{
__html: `
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', '${process.env.GA_TRACKING_ID}');
gtag('config', '${process.env.NEXT_PUBLIC_GA_TRACKING_ID}');
`,
}}
/>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export default async function initClient({ router }) {
router.events.on('routeChangeComplete', (url) => {
setTimeout(() => {
window.gtag('config', process.env.GA_TRACKING_ID, {
window.gtag('config', process.env.NEXT_PUBLIC_GA_TRACKING_ID, {
page_location: url,
page_title: document.title,
})
Expand Down

0 comments on commit 65648ec

Please sign in to comment.