Skip to content

Commit 5b17da9

Browse files
authored
Merge pull request #172 from carbonplan/Shane98c/plausible
add plausible
2 parents f52d26c + 5f81613 commit 5b17da9

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

components/list.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const List = ({ posts, years }) => {
1111
<Box>
1212
{filteredContents.map((d, ix) => (
1313
<Entry
14-
key={d.title}
14+
key={d.title + d.date}
1515
info={d}
1616
first={ix === 0}
1717
final={ix === filteredContents.length - 1}

pages/_app.js

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import React from 'react'
2+
import Script from 'next/script'
13
import { ThemeProvider } from 'theme-ui'
24
import '@carbonplan/components/fonts.css'
35
import '@carbonplan/components/globals.css'
@@ -7,6 +9,14 @@ import theme from '@carbonplan/theme'
79
const App = ({ Component, pageProps }) => {
810
return (
911
<ThemeProvider theme={theme}>
12+
{process.env.NEXT_PUBLIC_VERCEL_ENV === 'production' && (
13+
<Script
14+
strategy='lazyOnload'
15+
data-domain='carbonplan.org'
16+
data-api='https://carbonplan.org/proxy/api/event'
17+
src='https://carbonplan.org/js/script.file-downloads.outbound-links.js'
18+
/>
19+
)}
1020
<Component {...pageProps} />
1121
</ThemeProvider>
1222
)

0 commit comments

Comments
 (0)