Skip to content

Commit a4c5d19

Browse files
committed
fix: update links to nuxt.com
1 parent 9247608 commit a4c5d19

6 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ body:
66
attributes:
77
value: |
88
Please carefully read the contribution docs before creating a bug report
9-
👉 https://v3.nuxtjs.org/community/reporting-bugs
9+
👉 https://nuxt.com/docs/community/reporting-bugs
1010
1111
Please use a template below to create a minimal reproduction
1212
👉 https://codesandbox.io/p/github/nuxt/starter/tree/v2-bridge-codesandbox
@@ -23,7 +23,7 @@ body:
2323
id: reproduction
2424
attributes:
2525
label: Reproduction
26-
description: Please provide a link to a repo that can reproduce the problem you ran into. A [minimal reproduction](https://v3.nuxtjs.org/community/reporting-bugs#create-a-minimal-reproduction) is required unless you are absolutely sure that the issue is obvious and the provided information is enough to understand the problem. If a report is vague (e.g. just a generic error message) and has no reproduction, it will receive a "need reproduction" label. If no reproduction is provided after we might close it.
26+
description: Please provide a link to a repo that can reproduce the problem you ran into. A [minimal reproduction](https://nuxt.com/docs/community/reporting-bugs#create-a-minimal-reproduction) is required unless you are absolutely sure that the issue is obvious and the provided information is enough to understand the problem. If a report is vague (e.g. just a generic error message) and has no reproduction, it will receive a "need reproduction" label. If no reproduction is provided after we might close it.
2727
placeholder: Reproduction
2828
validations:
2929
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
contact_links:
22
- name: 📚 Documentation
3-
url: https://v3.nuxtjs.org/
3+
url: https://nuxt.com/docs/
44
about: Check documentation for usage
55
- name: 💬 Discussions
66
url: https://github.com/nuxt/bridge/discussions

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
☝️ PR title should follow conventional commits (https://conventionalcommits.org)
33
44
Please carefully read the contribution docs before creating a pull request
5-
👉 https://v3.nuxtjs.org/community/contribution
5+
👉 https://nuxt.com/docs/community/contribution
66
-->
77

88
### 🔗 Linked issue

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ Bridge is a forward-compatibility layer that allows you to experience many of th
66

77
Using Nuxt Bridge, you can make sure your project is (almost) ready for Nuxt 3 and have the best developer experience without needing a major rewrite or risk breaking changes.
88

9-
⚠️ **Note:** Nuxt Bridge provides identical features to Nuxt 3 ([Nuxt 3 docs](https://v3.nuxtjs.org/guide/features/views)) but there are some limitations, notably that `useAsyncData` and `useFetch` composables are not available. Please read the rest of this page for details.
9+
⚠️ **Note:** Nuxt Bridge provides identical features to Nuxt 3 ([Nuxt 3 docs](https://nuxt.com/docs/getting-started/views#views)) but there are some limitations, notably that `useAsyncData` and `useFetch` composables are not available. Please read the rest of this page for details.
1010

1111
⚠️ **Note:** Nuxt Bridge does not support Internet Explorer. Supported browsers are listed at https://caniuse.com/es6-module-dynamic-import.
1212

13-
🌱 **Note:** If you're starting a fresh Nuxt project, please skip this module and directly go to the [Nuxt 3 Installation](https://v3.nuxtjs.org/getting-started/quick-start).
13+
🌱 **Note:** If you're starting a fresh Nuxt project, please skip this module and directly go to the [Nuxt 3 Installation](https://nuxt.com/docs/getting-started/introduction).
1414

1515
## 💻 Development
1616

@@ -20,7 +20,7 @@ Using Nuxt Bridge, you can make sure your project is (almost) ready for Nuxt 3 a
2020
- Run `npx yarn dev:prepare` to activate passive development
2121
- Open playground with `npx yarn dev`
2222

23-
Learn more about in our documentation on [how to contribute to Nuxt](https://v3.nuxtjs.org/community/contribution).
23+
Learn more about in our documentation on [how to contribute to Nuxt](https://nuxt.com/docs/community/contribution).
2424

2525

2626
## Installation
@@ -65,7 +65,7 @@ You will also need to update your scripts within your `package.json` to reflect
6565

6666
### Nuxi
6767

68-
Nuxt 3 introduced the new Nuxt CLI command [`nuxi`](https://v3.nuxtjs.org/api/commands/add). Update your scripts as follows to leverage the better support from Nuxt Bridge:
68+
Nuxt 3 introduced the new Nuxt CLI command [`nuxi`](https://nuxt.com/docs/api/commands/add). Update your scripts as follows to leverage the better support from Nuxt Bridge:
6969

7070
```diff
7171
{
@@ -140,11 +140,11 @@ In case you need to extend options provided by `./.nuxt/tsconfig.json` further,
140140

141141
## Migrate Composition API
142142

143-
If you were using `@vue/composition-api` or `@nuxtjs/composition-api`, please read the [composition api migration guide](https://v3.nuxtjs.org/bridge/bridge-composition-api).
143+
If you were using `@vue/composition-api` or `@nuxtjs/composition-api`, please read the [composition api migration guide](https://nuxt.com/docs/bridge/bridge-composition-api).
144144

145145
### Migrate from CommonJS to ESM
146146

147-
Nuxt 3 natively supports TypeScript and ECMAScript Modules. Please check [Native ES Modules](https://v3.nuxtjs.org/guide/going-further/esm) for more info and upgrading.
147+
Nuxt 3 natively supports TypeScript and ECMAScript Modules. Please check [Native ES Modules](https://nuxt.com/docs/guide/concepts/esm) for more info and upgrading.
148148

149149
## Remove incompatible and obsolete modules
150150

@@ -153,8 +153,8 @@ Nuxt 3 natively supports TypeScript and ECMAScript Modules. Please check [Native
153153
- Remove `@nuxt/typescript-build`: Bridge enables same functionality
154154
- Remove `@nuxt/typescript-runtime` and `nuxt-ts`: Nuxt 2 has built-in runtime support
155155
- Remove `@nuxt/nitro`: Bridge injects same functionality
156-
- Remove `@vue/composition-api` from your dependencies ([migration guide](https://v3.nuxtjs.org/bridge/bridge-composition-api)).
157-
- Remove `@nuxtjs/composition-api` from your dependencies (and from your modules in `nuxt.config`) ([migration guide](https://v3.nuxtjs.org/bridge/bridge-composition-api)).
156+
- Remove `@vue/composition-api` from your dependencies ([migration guide](https://nuxt.com/docs/bridge/bridge-composition-api)).
157+
- Remove `@nuxtjs/composition-api` from your dependencies (and from your modules in `nuxt.config`) ([migration guide](https://nuxt.com/docs/bridge/bridge-composition-api)).
158158

159159
## Exclude built Nitro folder from git
160160

@@ -178,7 +178,7 @@ export default defineNuxtConfig({
178178

179179
You can now migrate to the Nuxt 3 plugins API, which is slightly different in format from Nuxt 2.
180180

181-
Plugins now take only one argument (`nuxtApp`). You can find out more in [the docs](https://v3.nuxtjs.org/guide/directory-structure/plugins).
181+
Plugins now take only one argument (`nuxtApp`). You can find out more in [the docs](https://nuxt.com/docs/guide/directory-structure/plugins).
182182

183183
```js
184184
export default defineNuxtPlugin(nuxtApp => {
@@ -218,7 +218,7 @@ export default defineNuxtConfig({
218218
This `useHead` composable uses `@vueuse/head` under the hood (rather than `vue-meta`) to manipulate your `<head>`.
219219
Accordingly, we recommend not to use both the native Nuxt 2 `head()` properties as well as `useHead`, as they may conflict.
220220

221-
For more information on how to use this composable, see [the docs](https://v3.nuxtjs.org/guide/features/head-management).
221+
For more information on how to use this composable, see [the docs](https://nuxt.com/docs/getting-started/seo-meta#seo-and-meta).
222222

223223
## Feature Flags
224224

packages/bridge/src/meta.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { addTemplate, useNuxt, installModule } from '@nuxt/kit'
33
import metaModule from './head'
44
import { distDir } from './dirs'
55

6-
const checkDocsMsg = 'Please see https://v3.nuxtjs.org for more information.'
6+
const checkDocsMsg = 'Please see https://nuxt.com/docs for more information.'
77
const msgPrefix = '[bridge] [meta]'
88

99
interface SetupMetaOptions {

packages/bridge/src/runtime/capi.legacy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export { ref }
5656

5757
// Common deprecation utils
5858
// TODO: Add migration guide docs to @nuxtjs/composition-api
59-
const checkDocsMsg = 'Please see https://v3.nuxtjs.org/bridge/bridge-composition-api for more information.'
59+
const checkDocsMsg = 'Please see https://nuxt.com/docs/bridge/bridge-composition-api for more information.'
6060
const msgPrefix = '[bridge] [legacy capi]'
6161
const unsupported = message => () => { throw new Error(`${msgPrefix} ${message} ${checkDocsMsg}`) }
6262
const _warned = {}

0 commit comments

Comments
 (0)