Skip to content

Commit 8937884

Browse files
author
Stefan Buck
committed
Update base url
1 parent c45f533 commit 8937884

File tree

5 files changed

+12
-11
lines changed

5 files changed

+12
-11
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
node_modules/
22
.next/
33
dist/
4-
npm-debug.log
4+
npm-debug.log
5+
.vercel

now.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"version": 2,
33
"name": "octolinker-site",
44
"alias": [
5-
"octolinker.now.sh"
5+
"octolinker.vercel.app"
66
]
77
}

pages/_document.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ export default class NextSite extends Document {
1818
name="twitter:title"
1919
content="OctoLinker — Links together, what belongs together."
2020
/>
21-
<meta property="og:url" content="https://octolinker.now.sh" />
21+
<meta name="google-site-verification" content="v3K92ouLbxqnD8jtbkkdm4LgD5g4uNGW2KYMBwUmFxI" />
22+
<meta property="og:url" content="https://octolinker.vercel.app" />
2223
<meta property="og:site_name" content="OctoLinker" />
2324
<meta property="og:type" content="website" />
2425
<meta
@@ -31,11 +32,11 @@ export default class NextSite extends Document {
3132
/>
3233
<meta
3334
property="og:image"
34-
content="https://octolinker.now.sh/static/octolinker-og-screenshot.png"
35+
content="https://octolinker.vercel.app/static/octolinker-og-screenshot.png"
3536
/>
3637
<meta
3738
name="twitter:image"
38-
content="https://octolinker.now.sh/static/octolinker-og-screenshot.png"
39+
content="https://octolinker.vercel.app/static/octolinker-og-screenshot.png"
3940
/>
4041
<meta httpEquiv="x-ua-compatible" content="ie=edge" />
4142
<meta
@@ -44,7 +45,7 @@ export default class NextSite extends Document {
4445
/>
4546
<link
4647
rel="image_src"
47-
href="https://octolinker.now.sh/static/octolinker-og-image.png"
48+
href="https://octolinker.vercel.app/static/octolinker-og-image.jpg"
4849
/>
4950
<link
5051
href="https://fonts.googleapis.com/css?family=Oxygen:300,400,700"
@@ -59,15 +60,14 @@ export default class NextSite extends Document {
5960
type="image/x-icon"
6061
/>
6162
<link rel="icon" href="/static/favicon.ico" type="image/x-icon" />
62-
{PLAUSIBLE_ENABLED && (<script async defer data-domain="octolinker.now.sh" src="https://plausible.io/js/plausible.js" />)}
63+
{PLAUSIBLE_ENABLED && (<script async defer data-domain="octolinker.vercel.app" src="https://plausible.io/js/plausible.js" />)}
6364
<script
6465
// eslint-disable-next-line react/no-danger
6566
dangerouslySetInnerHTML={{
6667
__html: plausibleSnippet
6768
}}
6869
/>
6970
<style jsx global>{``}</style>
70-
<meta name="google-site-verification" content="pBgF-oOHMUunMh05Uqre2Z1LJbtOoFoCn9mikLIIOew" />
7171
</Head>
7272
<body>
7373
<Main />

pages/privacy.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ function Privacy() {
1515
<a href="https://github.com/OctoLinker/">OctoLinker</a>. For
1616
simplicity we use the term OctoLinker for both, the browser extension
1717
and the OctoLinker API available at{" "}
18-
<a href="https://octolinker.now.sh/" rel="nofollow">
19-
https://octolinker.now.sh
18+
<a href="https://octolinker.vercel.app/" rel="nofollow">
19+
https://octolinker.vercel.app
2020
</a>
2121
</p>
2222
<h2>What information do we collect?</h2>

readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ To get started:
1010
1. Clone the repository:
1111

1212
```bash
13-
git clone [email protected]:OctoLinker/octolinker.now.sh.git octolinker-website
13+
git clone [email protected]:OctoLinker/octolinker-site.git octolinker-site
1414
cd octolinker-website
1515
```
1616

0 commit comments

Comments
 (0)