Skip to content

Commit 93434de

Browse files
authored
2 changes by Nuxt Studio
1 parent 1d0291d commit 93434de

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

content/projects/quirks-when-setting-up-a-nuxt-website.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,4 +164,8 @@ Nuxt Studio does not allow you to edit `.json` files. Only `.md` and `.yml` can
164164

165165
## Remove `@nuxt/fonts`
166166

167-
Building on NuxtHub fails if `@nuxt/fonts` is included is in `package.json`. It can safely be removed if using Nuxt UI-Pro as it is installed as a dependency.
167+
Building on NuxtHub fails if `@nuxt/fonts` is included is in `package.json`. It can safely be removed if using Nuxt UI-Pro as it is installed as a dependency.
168+
169+
## Studio team account
170+
171+
To start the free trial, you have to first create a team in Nuxt Studio and then start or move your project to that team. The options to upgrade appear at that point.

content/projects/routing-recipes-for-nuxt-content.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ seo:
99
---
1010

1111
Versions used are:
12+
1213
- Nuxt 3.15.x
1314
- Nuxt UI-Pro 3.0.0-alpha.12
1415
- Nuxt Content 3.1.1
@@ -19,12 +20,11 @@ Versions used are:
1920

2021
pnpm 10.4.0 introduced a new feature - postinstall scripts of dependencies are ignored by default. Unfortuately this causes builds to fail when using the github CI workflow as set up by NuxtHub. Local builds appear to be unaffected.
2122

22-
- https://github.com/pnpm/pnpm/issues/9073#issuecomment-2649312658
23-
- https://github.com/pnpm/pnpm/issues/9045#issuecomment-2637610205
24-
- https://pnpm.io/cli/approve-builds
23+
- <https://github.com/pnpm/pnpm/issues/9073#issuecomment-2649312658>
24+
- <https://github.com/pnpm/pnpm/issues/9045#issuecomment-2637610205>
25+
- <https://pnpm.io/cli/approve-builds>
2526

2627
::code-group
27-
2828
```bash [pnpm]
2929
Error: Could not locate the bindings file. Tried:
3030
# followed by many lines all containing paths that include `better_sqlite3`
@@ -44,10 +44,9 @@ Error: Could not locate the bindings file. Tried:
4444

4545
The Server API documentation within NuxtHub is not working as expected and enabling it causes builds to fail.
4646

47-
- https://github.com/nuxt/content/issues/2839
47+
- <https://github.com/nuxt/content/issues/2839>
4848

4949
::code-group
50-
5150
```bash [pnpm]
5251
RollupError: virtual:#nitro-internal-virtual/server-handlers-meta (32:7): Identifier "_vtEFC3Meta" has already been declared
5352
# followed by more lines
@@ -78,7 +77,7 @@ nitro: {
7877

7978
Although this is now explicit in the docs, it is easily missed. `@nuxt/content` must be listed after `@nuxt/ui-pro`.
8079

81-
- https://ui3.nuxt.dev/getting-started/content
80+
- <https://ui3.nuxt.dev/getting-started/content>
8281

8382
```ts [nuxt.config.ts]
8483
export default defineNuxtConfig({
@@ -88,4 +87,3 @@ export default defineNuxtConfig({
8887
]
8988
})
9089
```
91-

0 commit comments

Comments
 (0)