You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: devframe/docs/guide/diagnostics.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -152,7 +152,7 @@ docs/errors/
152
152
MYP0002.md
153
153
```
154
154
155
-
Each page covers the message, cause, example, and fix — see any [DF code page](https://devtools.vite.dev/devframe/errors/) for the canonical template. Set `docsBase` on `defineDiagnostics({...})` so the URL is auto-attached to every emitted diagnostic.
155
+
Each page covers the message, cause, example, and fix — see any [DF code page](https://devfra.me/errors/) for the canonical template. Set `docsBase` on `defineDiagnostics({...})` so the URL is auto-attached to every emitted diagnostic.
Copy file name to clipboardExpand all lines: devframe/docs/guide/nuxt.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ outline: deep
4
4
5
5
# Nuxt Helper
6
6
7
-
The `devframe/helpers/nuxt` module wires a Nuxt-built SPA up as a devframe client. It's an integration helper, not a deployment adapter — it runs inside the Nuxt app that consumes your devtool, not as part of the CLI that serves it.
7
+
The `@devframes/nuxt` module wires a Nuxt-built SPA up as a devframe client. It's an integration helper, not a deployment adapter — it runs inside the Nuxt app that consumes your devtool, not as part of the CLI that serves it.
8
8
9
9
It handles the three things every Nuxt-powered standalone devtool needs to get right:
10
10
@@ -16,7 +16,7 @@ It handles the three things every Nuxt-powered standalone devtool needs to get r
16
16
17
17
```ts [nuxt.config.ts]
18
18
exportdefaultdefineNuxtConfig({
19
-
modules: ['devframe/helpers/nuxt'],
19
+
modules: ['@devframes/nuxt'],
20
20
})
21
21
```
22
22
@@ -44,7 +44,7 @@ export function usePayload() {
44
44
45
45
```ts [nuxt.config.ts]
46
46
exportdefaultdefineNuxtConfig({
47
-
modules: ['devframe/helpers/nuxt'],
47
+
modules: ['@devframes/nuxt'],
48
48
devframe: {
49
49
baseURL: './', // where the devframe snapshot lives, relative to the page
50
50
skipAppDefaults: false, // opt out of the app.baseURL / vite.base defaults
0 commit comments