@nuxt/docs-nightly 4.0.1-29210307.8aacdde4 → 4.0.1-29211316.5018ed23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -9,8 +9,8 @@ navigation.icon: i-lucide-play
|
|
|
9
9
|
If you just want to play around with Nuxt in your browser without setting up a project, you can use one of our online sandboxes:
|
|
10
10
|
|
|
11
11
|
::card-group
|
|
12
|
-
:card{title="Open on StackBlitz" icon="i-simple-icons-stackblitz" to="https://nuxt.new/s/
|
|
13
|
-
:card{title="Open on CodeSandbox" icon="i-simple-icons-codesandbox" to="https://nuxt.new/c/
|
|
12
|
+
:card{title="Open on StackBlitz" icon="i-simple-icons-stackblitz" to="https://nuxt.new/s/v4" target="_blank"}
|
|
13
|
+
:card{title="Open on CodeSandbox" icon="i-simple-icons-codesandbox" to="https://nuxt.new/c/v4" target="_blank"}
|
|
14
14
|
::
|
|
15
15
|
|
|
16
16
|
Or follow the steps below to set up a new Nuxt project on your computer.
|
|
@@ -39,23 +39,23 @@ Open a terminal (if you're using [Visual Studio Code](https://code.visualstudio.
|
|
|
39
39
|
::code-group{sync="pm"}
|
|
40
40
|
|
|
41
41
|
```bash [npm]
|
|
42
|
-
npm create nuxt <project-name>
|
|
42
|
+
npm create nuxt <project-name>
|
|
43
43
|
```
|
|
44
44
|
|
|
45
45
|
```bash [yarn]
|
|
46
|
-
yarn create nuxt <project-name>
|
|
46
|
+
yarn create nuxt <project-name>
|
|
47
47
|
```
|
|
48
48
|
|
|
49
49
|
```bash [pnpm]
|
|
50
|
-
pnpm create nuxt <project-name>
|
|
50
|
+
pnpm create nuxt <project-name>
|
|
51
51
|
```
|
|
52
52
|
|
|
53
53
|
```bash [bun]
|
|
54
|
-
bun create nuxt <project-name>
|
|
54
|
+
bun create nuxt <project-name>
|
|
55
55
|
```
|
|
56
56
|
|
|
57
57
|
```bash [deno]
|
|
58
|
-
deno -A npm:create-nuxt@latest <project-name>
|
|
58
|
+
deno -A npm:create-nuxt@latest <project-name>
|
|
59
59
|
```
|
|
60
60
|
|
|
61
61
|
::
|
|
@@ -43,19 +43,19 @@ First, upgrade to Nuxt 4:
|
|
|
43
43
|
::code-group{sync="pm"}
|
|
44
44
|
|
|
45
45
|
```bash [npm]
|
|
46
|
-
npm install nuxt@^4.0.0
|
|
46
|
+
npm install nuxt@^4.0.0
|
|
47
47
|
```
|
|
48
48
|
|
|
49
49
|
```bash [yarn]
|
|
50
|
-
yarn add nuxt@^4.0.0
|
|
50
|
+
yarn add nuxt@^4.0.0
|
|
51
51
|
```
|
|
52
52
|
|
|
53
53
|
```bash [pnpm]
|
|
54
|
-
pnpm add nuxt@^4.0.0
|
|
54
|
+
pnpm add nuxt@^4.0.0
|
|
55
55
|
```
|
|
56
56
|
|
|
57
57
|
```bash [bun]
|
|
58
|
-
bun add nuxt@^4.0.0
|
|
58
|
+
bun add nuxt@^4.0.0
|
|
59
59
|
```
|
|
60
60
|
|
|
61
61
|
::
|
|
@@ -140,6 +140,7 @@ layers/
|
|
|
140
140
|
modules/
|
|
141
141
|
node_modules/
|
|
142
142
|
public/
|
|
143
|
+
shared/
|
|
143
144
|
server/
|
|
144
145
|
api/
|
|
145
146
|
middleware/
|
|
@@ -785,7 +785,7 @@ Linking to the integration website and documentation is always a good idea.
|
|
|
785
785
|
|
|
786
786
|
#### Provide a StackBlitz Demo or Boilerplate
|
|
787
787
|
|
|
788
|
-
It's a good practice to make a minimal reproduction with your module and [StackBlitz](https://nuxt.new/s/
|
|
788
|
+
It's a good practice to make a minimal reproduction with your module and [StackBlitz](https://nuxt.new/s/v4) that you add to your module readme.
|
|
789
789
|
|
|
790
790
|
This not only provides potential users of your module a quick and easy way to experiment with the module but also an easy way for them to build minimal reproductions they can send you when they encounter issues.
|
|
791
791
|
|