Skip to content

Commit

Permalink
Release 1.2.3 (#221)
Browse files Browse the repository at this point in the history
  • Loading branch information
katspaugh authored Jul 28, 2023
1 parent b5bfb48 commit 7f74a83
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "safe-homepage",
"homepage": "https://github.com/safe-global/safe-homepage",
"version": "1.2.2",
"version": "1.2.3",
"scripts": {
"build": "next build && next export",
"lint": "tsc && next lint",
Expand Down
3 changes: 2 additions & 1 deletion src/pages/_document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import Document, { Html, Head, Main, NextScript } from 'next/document'
import createEmotionServer from '@emotion/server/create-instance'
import { createEmotionCache } from '@/styles/emotion'
import { IS_PRODUCTION } from '@/config/constants'

const structuredData = {
'@context': 'https://schema.org',
Expand Down Expand Up @@ -40,7 +41,7 @@ export default class MyDocument extends Document {
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon/favicon-16x16.png" />

{/* Plausible Analytics */}
<script defer data-domain="safe.global" src="https://plausible.io/js/script.js"></script>
{IS_PRODUCTION && <script defer data-domain="safe.global" src="https://plausible.io/js/script.js" />}

{(this.props as any).emotionStyleTags}
</Head>
Expand Down

0 comments on commit 7f74a83

Please sign in to comment.