diff --git a/README.md b/README.md index 623672ad..9d8f9c73 100644 --- a/README.md +++ b/README.md @@ -11,10 +11,10 @@ A headless, framework-agnostic and extendable rich text editor, based on [ProseM > If you’re looking for tiptap 1, [click here](https://github.com/ueberdosis/tiptap/tree/v1). ## Examples -Have a look at the [examples to see tiptap in action](https://next.tiptap.dev/examples). +Have a look at the [examples to see tiptap in action](https://www.tiptap.dev/examples). ## Documentation -The full documentation is a available on [next.tiptap.dev](https://next.tiptap.dev/installation). +The full documentation is a available on [www.tiptap.dev](https://www.tiptap.dev/installation). ## Community For help, discussion about best practices, or any other conversation that would benefit from being searchable: diff --git a/docs/src/docPages/privacy-policy.md b/docs/src/docPages/privacy-policy.md index e0f0e8f3..e4b10eac 100644 --- a/docs/src/docPages/privacy-policy.md +++ b/docs/src/docPages/privacy-policy.md @@ -20,7 +20,7 @@ We use Netlify to host the documentation. It features continuous deployment from ### Tracking (Plausible) We use [Plausible](https://plausible.io) to gain insight about our visitors in general. It doesn’t track individual users per se and does not store any personal identifiable information. Go to [their documentation](https://plausible.io/data-policy) to find out what Simple Analytics collects (and more importantly what they don’t). -Or have a look at the [public analytics dashboard](https://plausible.io/next.tiptap.dev) they provide. It’s not a stripped down version, it’s the exact same dashboard we use to check the traffic. +Or have a look at the [public analytics dashboard](https://plausible.io/tiptap.dev) they provide. It’s not a stripped down version, it’s the exact same dashboard we use to check the traffic. ### Search (Algolia) We use [Algolia DocSearch](https://docsearch.algolia.com/) to offer search functionality for the documentation. They crawl the same pages as you see once every day. If you click on the search field on top of this page, their search interface pops up. diff --git a/docs/src/index.html b/docs/src/index.html index b71c0c10..157ec82f 100644 --- a/docs/src/index.html +++ b/docs/src/index.html @@ -8,7 +8,7 @@ ${app} ${scripts} ${process.env.NODE_ENV === 'production' - ? '' + ? '' : '' } diff --git a/docs/src/pages/index.vue b/docs/src/pages/index.vue index e84e6935..d47ca701 100644 --- a/docs/src/pages/index.vue +++ b/docs/src/pages/index.vue @@ -248,7 +248,7 @@ export default { }, { property: 'og:image', - content: 'https://next.tiptap.dev/images/og-image.png', + content: 'https://www.tiptap.dev/images/og-image.png', }, /* Twitter */ { @@ -261,7 +261,7 @@ export default { }, { name: 'twitter:image', - content: 'https://next.tiptap.dev/images/og-image.png', + content: 'https://www.tiptap.dev/images/og-image.png', }, { name: 'twitter:site', diff --git a/docs/src/templates/DocPage/index.vue b/docs/src/templates/DocPage/index.vue index f1ffb4e7..07277b04 100644 --- a/docs/src/templates/DocPage/index.vue +++ b/docs/src/templates/DocPage/index.vue @@ -69,7 +69,7 @@ export default { const path = this.$route.path.replace(/\/$/, '') return path === '' - ? 'https://next.tiptap.dev/og-image.png' + ? 'https://www.tiptap.dev/og-image.png' : `/images${path}/og-image.png` }, },