From 58c095b363c84945734e67fdfd9a35874ab094f0 Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Mon, 21 Sep 2026 18:49:03 +0000 Subject: [PATCH 1/3] test: stop two fixtures racing the work they are checking --- .../nuxt-cli/test/unit/dev/lifecycle.spec.ts | 4 +++- .../nuxt-cli/test/unit/error-channel.spec.ts | 18 +++++++++++++++--- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/packages/nuxt-cli/test/unit/dev/lifecycle.spec.ts b/packages/nuxt-cli/test/unit/dev/lifecycle.spec.ts index a829a80c5..ce7b052e6 100644 --- a/packages/nuxt-cli/test/unit/dev/lifecycle.spec.ts +++ b/packages/nuxt-cli/test/unit/dev/lifecycle.spec.ts @@ -141,7 +141,9 @@ afterEach(async () => { await server.listener?.close().catch(() => {}) await server.close().catch(() => {}) } - await Promise.all(tempDirs.splice(0).map(dir => rm(dir, { recursive: true, force: true }))) + // A server that has just closed can still be flushing into `.nuxt`, which + // makes the removal race it and fail with ENOTEMPTY. + await Promise.all(tempDirs.splice(0).map(dir => rm(dir, { recursive: true, force: true, maxRetries: 3 }))) }) describe('dev server startup', () => { diff --git a/packages/nuxt-cli/test/unit/error-channel.spec.ts b/packages/nuxt-cli/test/unit/error-channel.spec.ts index d5d3cdf57..b68b137d5 100644 --- a/packages/nuxt-cli/test/unit/error-channel.spec.ts +++ b/packages/nuxt-cli/test/unit/error-channel.spec.ts @@ -88,6 +88,19 @@ async function createProject() { return { dir, file, opened } } +/** + * What the stub editor recorded. The shell creates the file when it opens the + * append, so waiting for it to exist can hand back an empty read. + */ +async function waitForOpened(opened: string): Promise { + let recorded = '' + await vi.waitUntil(async () => { + recorded = existsSync(opened) ? await readFile(opened, 'utf8') : '' + return recorded.length > 0 + }) + return recorded +} + function createServer() { return new NuxtDevServer({ cwd: process.cwd(), dotenv: {}, overrides: {} }) } @@ -453,8 +466,7 @@ describe('the CLI-owned error channel', () => { await instance.handler(openRequest({}, '/etc/passwd'), createResponse().res) await instance.handler(openRequest({}, file), createResponse().res) - await vi.waitUntil(() => existsSync(opened)) - const spawned = await readFile(opened, 'utf8') + const spawned = await waitForOpened(opened) expect(spawned).toContain(file) expect(spawned).not.toContain('passwd') }) @@ -470,7 +482,7 @@ describe('the CLI-owned error channel', () => { expect(existsSync(opened)).toBe(false) await instance.handler(openRequest({}, file), createResponse().res) - await vi.waitUntil(() => existsSync(opened)) + await waitForOpened(opened) }) it.skipIf(process.platform === 'win32')('should refuse a directory, and a symlink leaving the project', async () => { From 5b5d11041ec0625ac67a30f8a9b69def1edcfe6d Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Tue, 22 Sep 2026 00:16:25 +0100 Subject: [PATCH 2/3] test: make capture more determinative --- capture/captures.config.ts | 9 ++ .../starter-templates/content.json | 12 +++ .../starter-templates/listing.json | 87 +++++++++++++++++++ .../starter-templates/minimal.json | 13 +++ .../starter-templates/module.json | 12 +++ .../fixture-data/starter-templates/ui.json | 12 +++ .../starter-templates/v5-nightly.json | 10 +++ capture/lib/scrub.ts | 3 + 8 files changed, 158 insertions(+) create mode 100644 capture/fixture-data/starter-templates/content.json create mode 100644 capture/fixture-data/starter-templates/listing.json create mode 100644 capture/fixture-data/starter-templates/minimal.json create mode 100644 capture/fixture-data/starter-templates/module.json create mode 100644 capture/fixture-data/starter-templates/ui.json create mode 100644 capture/fixture-data/starter-templates/v5-nightly.json diff --git a/capture/captures.config.ts b/capture/captures.config.ts index 213d38c99..bf575ee74 100644 --- a/capture/captures.config.ts +++ b/capture/captures.config.ts @@ -254,9 +254,18 @@ export const captures: Capture[] = [ animated: true, rows: 24, scrub: DEFAULT_SCRUB, + // The template listing is rate-limited and unauthenticated; answer it and + // the per-template documents from committed fixtures. env: { NODE_OPTIONS: `--import=${new URL('lib/fetch-stub.mjs', import.meta.url).href}`, CAPTURE_FETCH_LATENCY: '250', + CAPTURE_FETCH_STUBS: JSON.stringify({ + 'https://api.github.com/repos/nuxt/starter/contents/templates': fileURLToPath(new URL('fixture-data/starter-templates/listing.json', import.meta.url)), + ...Object.fromEntries(['content', 'minimal', 'module', 'ui', 'v5-nightly'].map(name => [ + `https://raw.githubusercontent.com/nuxt/starter/templates/templates/${name}.json`, + fileURLToPath(new URL(`fixture-data/starter-templates/${name}.json`, import.meta.url)), + ])), + }), }, async drive({ session }) { await session.waitFor(/Which template/, 60_000) diff --git a/capture/fixture-data/starter-templates/content.json b/capture/fixture-data/starter-templates/content.json new file mode 100644 index 000000000..9b79c4d7c --- /dev/null +++ b/capture/fixture-data/starter-templates/content.json @@ -0,0 +1,12 @@ +{ + "$schema": "../template.schema.json", + "name": "content", + "label": "Content", + "description": "Starter for a content-driven website.", + "image": "data:image/svg+xml,%3Csvg width='34' height='34' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 14h10a1.667 1.667 0 0 0 1.667-1.667v-10A1.667 1.667 0 0 0 22 .667H12a1.667 1.667 0 0 0-1.667 1.666v10A1.667 1.667 0 0 0 12 14Zm1.667-10h6.666v6.667h-6.666V4ZM32 10.667h-3.333a1.667 1.667 0 0 0 0 3.333H32a1.667 1.667 0 1 0 0-3.333Zm-3.333-3.334H32A1.667 1.667 0 1 0 32 4h-3.333a1.667 1.667 0 0 0 0 3.333ZM2 7.333h3.333a1.667 1.667 0 1 0 0-3.333H2a1.667 1.667 0 1 0 0 3.333ZM2 14h3.333a1.667 1.667 0 1 0 0-3.333H2A1.667 1.667 0 0 0 2 14Zm30 3.333H2a1.667 1.667 0 1 0 0 3.334h30a1.667 1.667 0 1 0 0-3.334ZM18.667 24H2a1.667 1.667 0 1 0 0 3.333h16.667a1.667 1.667 0 0 0 0-3.333Z' fill='%2300BD6F'/%3E%3C/svg%3E", + "defaultDir": "nuxt-app", + "url": "https://content.nuxt.com", + "tar": "https://codeload.github.com/nuxt/starter/tar.gz/refs/heads/content", + "repo": "nuxt/starter", + "branch": "content" +} diff --git a/capture/fixture-data/starter-templates/listing.json b/capture/fixture-data/starter-templates/listing.json new file mode 100644 index 000000000..81d306d3b --- /dev/null +++ b/capture/fixture-data/starter-templates/listing.json @@ -0,0 +1,87 @@ +[ + { + "name": "community", + "type": "dir", + "download_url": null + }, + { + "name": "content.json", + "type": "file", + "download_url": "https://raw.githubusercontent.com/nuxt/starter/templates/templates/content.json" + }, + { + "name": "doc-driven.json", + "type": "file", + "download_url": "https://raw.githubusercontent.com/nuxt/starter/templates/templates/doc-driven.json" + }, + { + "name": "hub.json", + "type": "file", + "download_url": "https://raw.githubusercontent.com/nuxt/starter/templates/templates/hub.json" + }, + { + "name": "layer.json", + "type": "file", + "download_url": "https://raw.githubusercontent.com/nuxt/starter/templates/templates/layer.json" + }, + { + "name": "minimal.json", + "type": "file", + "download_url": "https://raw.githubusercontent.com/nuxt/starter/templates/templates/minimal.json" + }, + { + "name": "module-devtools.json", + "type": "file", + "download_url": "https://raw.githubusercontent.com/nuxt/starter/templates/templates/module-devtools.json" + }, + { + "name": "module.json", + "type": "file", + "download_url": "https://raw.githubusercontent.com/nuxt/starter/templates/templates/module.json" + }, + { + "name": "ui-vue.json", + "type": "file", + "download_url": "https://raw.githubusercontent.com/nuxt/starter/templates/templates/ui-vue.json" + }, + { + "name": "ui-vue", + "type": "dir", + "download_url": null + }, + { + "name": "ui.json", + "type": "file", + "download_url": "https://raw.githubusercontent.com/nuxt/starter/templates/templates/ui.json" + }, + { + "name": "ui", + "type": "dir", + "download_url": null + }, + { + "name": "v2-bridge.json", + "type": "file", + "download_url": "https://raw.githubusercontent.com/nuxt/starter/templates/templates/v2-bridge.json" + }, + { + "name": "v3.json", + "type": "file", + "download_url": "https://raw.githubusercontent.com/nuxt/starter/templates/templates/v3.json" + }, + { + "name": "v4-compat.json", + "type": "file", + "download_url": "https://raw.githubusercontent.com/nuxt/starter/templates/templates/v4-compat.json" + }, + { + "name": "v4.json", + "type": "file", + "download_url": "https://raw.githubusercontent.com/nuxt/starter/templates/templates/v4.json" + }, + { + "name": "v5-nightly.json", + "type": "file", + "download_url": "https://raw.githubusercontent.com/nuxt/starter/templates/templates/v5-nightly.json" + } +] diff --git a/capture/fixture-data/starter-templates/minimal.json b/capture/fixture-data/starter-templates/minimal.json new file mode 100644 index 000000000..ac2b38760 --- /dev/null +++ b/capture/fixture-data/starter-templates/minimal.json @@ -0,0 +1,13 @@ +{ + "$schema": "../template.schema.json", + "name": "minimal", + "label": "Nuxt 4", + "default": true, + "description": "Minimal starter with a single app.vue.", + "image": "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34' viewBox='0 0 34 34' fill='none'%3E%3Cpath d='M19.0778 28.3333H31.6956C32.0993 28.3364 32.4968 28.2333 32.8482 28.0344C33.1996 27.8355 33.4926 27.5478 33.6978 27.2C33.8967 26.8554 34.0015 26.4645 34.0015 26.0667C34.0015 25.6688 33.8967 25.2779 33.6978 24.9333L25.1978 10.3511C24.9987 10.0063 24.7124 9.72003 24.3675 9.52108C24.0226 9.32213 23.6315 9.21751 23.2333 9.21777C22.8296 9.2147 22.4321 9.31778 22.0807 9.51669C21.7293 9.71559 21.4363 10.0033 21.2311 10.3511L19.0778 14.0911L14.8467 6.79999C14.6445 6.44959 14.3521 6.1597 14 5.96041C13.648 5.76112 13.249 5.65969 12.8445 5.66666C12.4471 5.67016 12.0574 5.77635 11.7132 5.97494C11.369 6.17352 11.0819 6.45774 10.88 6.79999L0.302233 24.9333C0.153235 25.1913 0.056538 25.476 0.0176701 25.7714C-0.0211977 26.0667 -0.00147386 26.3668 0.075714 26.6545C0.152902 26.9422 0.28604 27.2118 0.467516 27.4481C0.648992 27.6843 0.875247 27.8824 1.13334 28.0311C1.47334 28.22 1.8889 28.3333 2.30446 28.3333H10.2378C13.3733 28.3333 15.6778 26.9733 17.2645 24.2911L21.1556 17.6422L23.2333 14.0911L29.4667 24.7822H21.1556L19.0778 28.3333ZM10.0867 24.7822H4.57112L12.8445 10.54L17 17.6422L14.2045 22.4022C13.1467 24.14 11.9756 24.7822 10.0867 24.7822Z' fill='%2300DC82'/%3E%3C/svg%3E", + "defaultDir": "nuxt-app", + "url": "https://nuxt.com/docs/getting-started/installation", + "tar": "https://codeload.github.com/nuxt/starter/tar.gz/refs/heads/v4", + "repo": "nuxt/starter", + "branch": "v4" +} diff --git a/capture/fixture-data/starter-templates/module.json b/capture/fixture-data/starter-templates/module.json new file mode 100644 index 000000000..9d12a1936 --- /dev/null +++ b/capture/fixture-data/starter-templates/module.json @@ -0,0 +1,12 @@ +{ + "$schema": "../template.schema.json", + "name": "module", + "label": "Module", + "description": "Starter to create your first Nuxt module.", + "image": "data:image/svg+xml,%3Csvg width='34' height='34' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M29.117 9.283V9.15l-.1-.25a1.186 1.186 0 0 0-.117-.15 1.571 1.571 0 0 0-.15-.2l-.15-.117-.267-.133-12.5-7.717a1.667 1.667 0 0 0-1.766 0L1.667 8.3l-.15.133-.15.117c-.056.063-.106.13-.15.2a1.183 1.183 0 0 0-.117.15l-.1.25v.133c-.016.144-.016.29 0 .434v14.566a1.667 1.667 0 0 0 .783 1.417l12.5 7.717a.784.784 0 0 0 .25.1h.134c.282.09.584.09.866 0h.134a.784.784 0 0 0 .25-.1L28.333 25.7a1.667 1.667 0 0 0 .784-1.417V9.717c.016-.144.016-.29 0-.434ZM13.333 29.017 4.167 23.35V12.717l9.166 5.65v10.65ZM15 15.483 5.667 9.717 15 3.967l9.333 5.75L15 15.483Zm10.833 7.867-9.166 5.667v-10.65l9.166-5.65V23.35Z' fill='%2300BD6F'/%3E%3C/svg%3E", + "defaultDir": "nuxt-module", + "url": "https://nuxt.com/docs/guide/going-further/modules", + "tar": "https://codeload.github.com/nuxt/starter/tar.gz/refs/heads/module", + "repo": "nuxt/starter", + "branch": "module" +} diff --git a/capture/fixture-data/starter-templates/ui.json b/capture/fixture-data/starter-templates/ui.json new file mode 100644 index 000000000..d2be41848 --- /dev/null +++ b/capture/fixture-data/starter-templates/ui.json @@ -0,0 +1,12 @@ +{ + "$schema": "../template.schema.json", + "name": "ui", + "label": "UI", + "description": "Starter with Nuxt UI.", + "image": "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 20 20'%3E%3Cpath fill='%2300DC82' fill-rule='evenodd' d='M10 2.5c-1.31 0-2.526.386-3.546 1.051a.75.75 0 0 1-.82-1.256A8 8 0 0 1 18 9a22.47 22.47 0 0 1-1.228 7.351a.75.75 0 1 1-1.417-.49A20.97 20.97 0 0 0 16.5 9A6.5 6.5 0 0 0 10 2.5ZM4.333 4.416a.75.75 0 0 1 .218 1.038A6.466 6.466 0 0 0 3.5 9a7.966 7.966 0 0 1-1.293 4.362a.75.75 0 0 1-1.257-.819A6.466 6.466 0 0 0 2 9c0-1.61.476-3.11 1.295-4.365a.75.75 0 0 1 1.038-.219ZM10 6.12a3 3 0 0 0-3.001 3.041a11.455 11.455 0 0 1-2.697 7.24a.75.75 0 0 1-1.148-.965A9.957 9.957 0 0 0 5.5 9c0-.028.002-.055.004-.082a4.5 4.5 0 0 1 8.996.084v.148l-.005.297a.75.75 0 1 1-1.5-.034c.003-.11.004-.219.005-.328a3 3 0 0 0-3-2.965Zm0 2.13a.75.75 0 0 1 .75.75c0 3.51-1.187 6.745-3.181 9.323a.75.75 0 1 1-1.186-.918A13.687 13.687 0 0 0 9.25 9a.75.75 0 0 1 .75-.75Zm3.529 3.698a.75.75 0 0 1 .584.885a18.883 18.883 0 0 1-2.257 5.84a.75.75 0 1 1-1.29-.764a17.386 17.386 0 0 0 2.078-5.377a.75.75 0 0 1 .885-.584Z' clip-rule='evenodd'/%3E%3C/svg%3E", + "defaultDir": "nuxt-app", + "url": "https://ui.nuxt.com", + "tar": "https://codeload.github.com/nuxt-ui-templates/starter/tar.gz/refs/heads/main", + "repo": "nuxt-ui-templates/starter", + "branch": "main" +} diff --git a/capture/fixture-data/starter-templates/v5-nightly.json b/capture/fixture-data/starter-templates/v5-nightly.json new file mode 100644 index 000000000..41e5c363b --- /dev/null +++ b/capture/fixture-data/starter-templates/v5-nightly.json @@ -0,0 +1,10 @@ +{ + "$schema": "../template.schema.json", + "name": "v5-nightly", + "description": "Minimal setup for Nuxt 5 Nightly", + "defaultDir": "nuxt-nightly", + "url": "https://nuxt.com", + "tar": "https://codeload.github.com/nuxt/starter/tar.gz/refs/heads/v5-nightly", + "repo": "nuxt/starter", + "branch": "v5-nightly" +} diff --git a/capture/lib/scrub.ts b/capture/lib/scrub.ts index 6c4038b85..67196ab38 100644 --- a/capture/lib/scrub.ts +++ b/capture/lib/scrub.ts @@ -48,6 +48,9 @@ const RULES: Record = { // boundary between two recordings must not change the scrubbed text. { pattern: /\b\d+(?:\.\d+)?\s?ms\b/g, replacement: () => '42 ms' }, { pattern: /\b\d+(?:\.\d+)?\s?s(?![a-z])/g, replacement: () => '42 ms' }, + // A phase clock is only printed beside the total once they differ, so + // the pair is a function of machine speed and carries nothing once pinned. + { pattern: /42 ms \u00B7 42 ms/g, replacement: () => '42 ms' }, ], }, versions: { From 8bb01820129b085e501c6cabb672398487f59f60 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Mon, 21 Sep 2026 23:18:50 +0000 Subject: [PATCH 3/3] [autofix.ci] apply automated fixes --- capture/output/nuxt-dev-plain-restart.svg | 40 ++++++++++------------- capture/output/nuxt-dev-plain-restart.txt | 12 +++---- capture/output/nuxt-dev-plain-static.svg | 2 +- capture/output/nuxt-dev-plain-static.txt | 12 +++---- capture/output/nuxt-dev-plain.svg | 30 ++++++----------- capture/output/nuxt-dev-plain.txt | 12 +++---- 6 files changed, 47 insertions(+), 61 deletions(-) diff --git a/capture/output/nuxt-dev-plain-restart.svg b/capture/output/nuxt-dev-plain-restart.svg index bf7e16238..fc2ec9972 100644 --- a/capture/output/nuxt-dev-plain-restart.svg +++ b/capture/output/nuxt-dev-plain-restart.svg @@ -16,27 +16,23 @@ svg{--bg:#ffffff;--fg:#24292f;--chrome:#f6f8fa;--dot:#d0d7de} nuxt dev (plain output, restart on config change) - - Starting Nuxt... 0.0s -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose Setting up modules 0.0s · 0.2s -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Preparing app 0.0s · 0.3s -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Preparing app 0.2s · 0.6s -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Generating types 0.0s · 0.6s -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Generating types 0.1s · 0.7s -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Bundling app 0.0s · 0.9s -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Vite client built in 36ms Vite server built in 12ms Building server 0.0s · 1.0s -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Vite client built in 36ms Vite server built in 12ms Building server 0.1s · 1.1s -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Vite client built in 36ms Vite server built in 12ms Building server 0.1s · 1.2s -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Vite client built in 36ms Vite server built in 12ms Building server 0.3s · 1.3s -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Vite client built in 36ms Vite server built in 12ms Building server 0.4s · 1.4s -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Vite client built in 36ms Vite server built in 12ms Building server 0.5s · 1.5s -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Vite client built in 36ms Vite server built in 12ms Building server 0.6s · 1.7s -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Vite client built in 36ms Vite server built in 12ms Nuxt Nitro server built in 848ms nitro Ready in 1.97s http://localhost:3000/config 151ms · modules 156ms · app 319ms · types 241ms · bundle 165ms · server 935mspressh + enterto see available shortcuts Vite server warmed up in 21ms Vite client warmed up in 45ms -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Vite client built in 36ms Vite server built in 12ms Nuxt Nitro server built in 848ms nitro Ready in 1.97s http://localhost:3000/config 151ms · modules 156ms · app 319ms · types 241ms · bundle 165ms · server 935mspressh + enterto see available shortcuts Vite server warmed up in 21ms Vite client warmed up in 45ms nuxt.config.ts changed. Reloading Nuxt... -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Vite client built in 36ms Vite server built in 12ms Nuxt Nitro server built in 848ms nitro Ready in 1.97s http://localhost:3000/config 151ms · modules 156ms · app 319ms · types 241ms · bundle 165ms · server 935mspressh + enterto see available shortcuts Vite server warmed up in 21ms Vite client warmed up in 45ms nuxt.config.ts changed. Reloading Nuxt... Re-optimizing dependencies because vite config has changed Vite client built in 14ms Vite server built in 16ms -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Vite client built in 36ms Vite server built in 12ms Nuxt Nitro server built in 848ms nitro Ready in 1.97s http://localhost:3000/config 151ms · modules 156ms · app 319ms · types 241ms · bundle 165ms · server 935mspressh + enterto see available shortcuts Vite server warmed up in 21ms Vite client warmed up in 45ms nuxt.config.ts changed. Reloading Nuxt... Re-optimizing dependencies because vite config has changed Vite client built in 14ms Vite server built in 16ms Nuxt Nitro server built in 617ms nitro Vite server warmed up in 2ms Vite client warmed up in 7ms -Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Vite client built in 36ms Vite server built in 12ms Nuxt Nitro server built in 848ms nitro Ready in 1.97s http://localhost:3000/config 151ms · modules 156ms · app 319ms · types 241ms · bundle 165ms · server 935mspressh + enterto see available shortcuts Vite server warmed up in 21ms Vite client warmed up in 45ms nuxt.config.ts changed. Reloading Nuxt... Re-optimizing dependencies because vite config has changed Vite client built in 14ms Vite server built in 16ms Nuxt Nitro server built in 617ms nitro Vite server warmed up in 2ms Vite client warmed up in 7ms nuxt.config.ts changed. Reloading Nuxt... ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) - Vite client built in 36ms Vite server built in 12ms Nuxt Nitro server built in 848ms nitro Ready in 1.97s http://localhost:3000/config 151ms · modules 156ms · app 319ms · types 241ms · bundle 165ms · server 935mspressh + enterto see available shortcuts Vite server warmed up in 21ms Vite client warmed up in 45ms nuxt.config.ts changed. Reloading Nuxt... Re-optimizing dependencies because vite config has changed Vite client built in 14ms Vite server built in 16ms Nuxt Nitro server built in 617ms nitro Vite server warmed up in 2ms Vite client warmed up in 7ms nuxt.config.ts changed. Reloading Nuxt... ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Re-optimizing dependencies because vite config has changed (x2) Vite client built in 14ms Vite server built in 10ms - Nuxt Nitro server built in 848ms nitro Ready in 1.97s http://localhost:3000/config 151ms · modules 156ms · app 319ms · types 241ms · bundle 165ms · server 935mspressh + enterto see available shortcuts Vite server warmed up in 21ms Vite client warmed up in 45ms nuxt.config.ts changed. Reloading Nuxt... Re-optimizing dependencies because vite config has changed Vite client built in 14ms Vite server built in 16ms Nuxt Nitro server built in 617ms nitro Vite server warmed up in 2ms Vite client warmed up in 7ms nuxt.config.ts changed. Reloading Nuxt... ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Re-optimizing dependencies because vite config has changed (x2) Vite client built in 14ms Vite server built in 10ms Nuxt Nitro server built in 555ms nitro Vite server warmed up in 2ms Vite client warmed up in 4ms + Starting Nuxt... 0.0s +Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) +Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Preparing app 0.0s · 0.2s +Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Preparing app 0.2s · 0.3s +Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Generating types 0.0s · 0.3s +Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Vite client built in 21ms +Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Vite client built in 21ms Vite server built in 7ms Building server 0.0s · 0.6s +Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Vite client built in 21ms Vite server built in 7ms Building server 0.1s · 0.6s +Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Vite client built in 21ms Vite server built in 7ms Building server 0.2s · 0.7s +Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Vite client built in 21ms Vite server built in 7ms Building server 0.3s · 0.8s +Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Vite client built in 21ms Vite server built in 7ms Building server 0.3s · 0.9s +Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Vite client built in 21ms Vite server built in 7ms Nuxt Nitro server built in 496ms nitro Vite server warmed up in 5ms Ready in 1.12s http://localhost:3000/config 82ms · modules 82ms · app 184ms · types 138ms · bundle 91ms · server 547mspressh + enterto see available shortcuts Vite client warmed up in 35ms +Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Vite client built in 21ms Vite server built in 7ms Nuxt Nitro server built in 496ms nitro Vite server warmed up in 5ms Ready in 1.12s http://localhost:3000/config 82ms · modules 82ms · app 184ms · types 138ms · bundle 91ms · server 547mspressh + enterto see available shortcuts Vite client warmed up in 35ms nuxt.config.ts changed. Reloading Nuxt... Re-optimizing dependencies because vite config has changed +Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Vite client built in 21ms Vite server built in 7ms Nuxt Nitro server built in 496ms nitro Vite server warmed up in 5ms Ready in 1.12s http://localhost:3000/config 82ms · modules 82ms · app 184ms · types 138ms · bundle 91ms · server 547mspressh + enterto see available shortcuts Vite client warmed up in 35ms nuxt.config.ts changed. Reloading Nuxt... Re-optimizing dependencies because vite config has changed Vite client built in 10ms Vite server built in 6ms +Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Vite client built in 21ms Vite server built in 7ms Nuxt Nitro server built in 496ms nitro Vite server warmed up in 5ms Ready in 1.12s http://localhost:3000/config 82ms · modules 82ms · app 184ms · types 138ms · bundle 91ms · server 547mspressh + enterto see available shortcuts Vite client warmed up in 35ms nuxt.config.ts changed. Reloading Nuxt... Re-optimizing dependencies because vite config has changed Vite client built in 10ms Vite server built in 6ms Nuxt Nitro server built in 343ms nitro Vite server warmed up in 2ms Vite client warmed up in 4ms + ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Vite client built in 21ms Vite server built in 7ms Nuxt Nitro server built in 496ms nitro Vite server warmed up in 5ms Ready in 1.12s http://localhost:3000/config 82ms · modules 82ms · app 184ms · types 138ms · bundle 91ms · server 547mspressh + enterto see available shortcuts Vite client warmed up in 35ms nuxt.config.ts changed. Reloading Nuxt... Re-optimizing dependencies because vite config has changed Vite client built in 10ms Vite server built in 6ms Nuxt Nitro server built in 343ms nitro Vite server warmed up in 2ms Vite client warmed up in 4ms nuxt.config.ts changed. Reloading Nuxt... ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Re-optimizing dependencies because vite config has changed (x2) Vite client built in 9ms + Vite client built in 21ms Vite server built in 7ms Nuxt Nitro server built in 496ms nitro Vite server warmed up in 5ms Ready in 1.12s http://localhost:3000/config 82ms · modules 82ms · app 184ms · types 138ms · bundle 91ms · server 547mspressh + enterto see available shortcuts Vite client warmed up in 35ms nuxt.config.ts changed. Reloading Nuxt... Re-optimizing dependencies because vite config has changed Vite client built in 10ms Vite server built in 6ms Nuxt Nitro server built in 343ms nitro Vite server warmed up in 2ms Vite client warmed up in 4ms nuxt.config.ts changed. Reloading Nuxt... ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Re-optimizing dependencies because vite config has changed (x2) Vite client built in 9ms Vite server built in 6ms + Nuxt Nitro server built in 496ms nitro Vite server warmed up in 5ms Ready in 1.12s http://localhost:3000/config 82ms · modules 82ms · app 184ms · types 138ms · bundle 91ms · server 547mspressh + enterto see available shortcuts Vite client warmed up in 35ms nuxt.config.ts changed. Reloading Nuxt... Re-optimizing dependencies because vite config has changed Vite client built in 10ms Vite server built in 6ms Nuxt Nitro server built in 343ms nitro Vite server warmed up in 2ms Vite client warmed up in 4ms nuxt.config.ts changed. Reloading Nuxt... ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Re-optimizing dependencies because vite config has changed (x2) Vite client built in 9ms Vite server built in 6ms Nuxt Nitro server built in 310ms nitro Vite server warmed up in 2ms Vite client warmed up in 2ms diff --git a/capture/output/nuxt-dev-plain-restart.txt b/capture/output/nuxt-dev-plain-restart.txt index ed8466e38..687478502 100644 --- a/capture/output/nuxt-dev-plain-restart.txt +++ b/capture/output/nuxt-dev-plain-restart.txt @@ -1,4 +1,4 @@ -styles: 243359a4e417d924 +styles: cc8073ef7ffad653 press h + enter to see available shortcuts ➜ DevTools: press Shift + Alt + D in the browser (x.y.z) ➜ Local: http://localhost:3000/ @@ -15,9 +15,9 @@ styles: 243359a4e417d924 ✔ Nuxt Nitro server built in 42 ms nitro ✔ Vite client built in 42 ms ✔ Vite server built in 42 ms -⠋ Building server 42 ms · 42 ms -⠋ Bundling app 42 ms · 42 ms -⠋ Generating types 42 ms · 42 ms -⠋ Preparing app 42 ms · 42 ms -⠋ Setting up modules 42 ms · 42 ms +⠋ Building server 42 ms +⠋ Bundling app 42 ms +⠋ Generating types 42 ms +⠋ Preparing app 42 ms +⠋ Setting up modules 42 ms ⠋ Starting Nuxt... 42 ms diff --git a/capture/output/nuxt-dev-plain-static.svg b/capture/output/nuxt-dev-plain-static.svg index ad5dd0e5b..b682add7d 100644 --- a/capture/output/nuxt-dev-plain-static.svg +++ b/capture/output/nuxt-dev-plain-static.svg @@ -16,6 +16,6 @@ svg{--bg:#ffffff;--fg:#24292f;--chrome:#f6f8fa;--dot:#d0d7de} nuxt dev (plain output, ready) -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Vite client built in 35ms Vite server built in 12ms Nuxt Nitro server built in 854ms nitro Ready in 1.97s http://localhost:3000/config 151ms · modules 154ms · app 319ms · types 238ms · bundle 162ms · server 942mspressh + enterto see available shortcuts Vite server warmed up in 15ms Vite client warmed up in 36ms +Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Vite client built in 21ms Vite server built in 7ms Nuxt Nitro server built in 494ms nitro Ready in 1.13s http://localhost:3000/config 88ms · modules 87ms · app 177ms · types 141ms · bundle 100ms · server 540mspressh + enterto see available shortcuts Vite server warmed up in 4ms Vite client warmed up in 7ms diff --git a/capture/output/nuxt-dev-plain-static.txt b/capture/output/nuxt-dev-plain-static.txt index f1bf7d0ec..afd96d0ae 100644 --- a/capture/output/nuxt-dev-plain-static.txt +++ b/capture/output/nuxt-dev-plain-static.txt @@ -1,4 +1,4 @@ -styles: 2956cfe899bf5ad9 +styles: e436f2ee732d3233 press h + enter to see available shortcuts ➜ DevTools: press Shift + Alt + D in the browser (x.y.z) ➜ Local: http://localhost:3000/ @@ -12,9 +12,9 @@ styles: 2956cfe899bf5ad9 ✔ Nuxt Nitro server built in 42 ms nitro ✔ Vite client built in 42 ms ✔ Vite server built in 42 ms -⠋ Building server 42 ms · 42 ms -⠋ Bundling app 42 ms · 42 ms -⠋ Generating types 42 ms · 42 ms -⠋ Preparing app 42 ms · 42 ms -⠋ Setting up modules 42 ms · 42 ms +⠋ Building server 42 ms +⠋ Bundling app 42 ms +⠋ Generating types 42 ms +⠋ Preparing app 42 ms +⠋ Setting up modules 42 ms ⠋ Starting Nuxt... 42 ms diff --git a/capture/output/nuxt-dev-plain.svg b/capture/output/nuxt-dev-plain.svg index 00db4337d..675463ffd 100644 --- a/capture/output/nuxt-dev-plain.svg +++ b/capture/output/nuxt-dev-plain.svg @@ -16,25 +16,15 @@ svg{--bg:#ffffff;--fg:#24292f;--chrome:#f6f8fa;--dot:#d0d7de} nuxt dev (plain output) - - Starting Nuxt... 0.0s - Starting Nuxt... 0.1s -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose Setting up modules 0.0s · 0.3s -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Preparing app 0.0s · 0.4s -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Preparing app 0.2s · 0.6s -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Generating types 0.0s · 0.7s -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Generating types 0.1s · 0.8s -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Bundling app 0.0s · 1.0s -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Re-optimizing dependencies because vite config has changed Vite client built in 46ms Vite server built in 22ms Building server 0.0s · 1.2s -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Re-optimizing dependencies because vite config has changed Vite client built in 46ms Vite server built in 22ms Building server 0.0s · 1.2s -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Re-optimizing dependencies because vite config has changed Vite client built in 46ms Vite server built in 22ms Building server 0.1s · 1.3s -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Re-optimizing dependencies because vite config has changed Vite client built in 46ms Vite server built in 22ms Building server 0.2s · 1.4s -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Re-optimizing dependencies because vite config has changed Vite client built in 46ms Vite server built in 22ms Building server 0.3s · 1.5s -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Re-optimizing dependencies because vite config has changed Vite client built in 46ms Vite server built in 22ms Building server 0.4s · 1.6s -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Re-optimizing dependencies because vite config has changed Vite client built in 46ms Vite server built in 22ms Building server 0.5s · 1.7s -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Re-optimizing dependencies because vite config has changed Vite client built in 46ms Vite server built in 22ms Building server 0.6s · 1.8s -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Re-optimizing dependencies because vite config has changed Vite client built in 46ms Vite server built in 22ms Building server 0.7s · 1.8s -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Re-optimizing dependencies because vite config has changed Vite client built in 46ms Vite server built in 22ms Building server 0.7s · 1.9s -Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Re-optimizing dependencies because vite config has changed Vite client built in 46ms Vite server built in 22ms Nuxt Nitro server built in 880ms nitro Ready in 2.17s http://localhost:3000/config 258ms · modules 176ms · app 307ms · types 256ms · bundle 173ms · server 999mspressh + enterto see available shortcuts Vite server warmed up in 12ms Vite client warmed up in 19ms + Starting Nuxt... 0.0s +Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Setting up modules 0.1s · 0.2s +Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Preparing app 0.0s · 0.2s +Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Generating types 0.0s · 0.4s +Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Bundling app 0.0s · 0.5s +Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Re-optimizing dependencies because vite config has changed Vite client built in 47ms Vite server built in 12ms Building server 0.0s · 0.7s +Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Re-optimizing dependencies because vite config has changed Vite client built in 47ms Vite server built in 12ms Building server 0.1s · 0.8s +Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Re-optimizing dependencies because vite config has changed Vite client built in 47ms Vite server built in 12ms Building server 0.2s · 0.9s +Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Re-optimizing dependencies because vite config has changed Vite client built in 47ms Vite server built in 12ms Building server 0.4s · 1.0s +Nuxt 4.5.2 (with Nitro 2.13.4, Vite 8.2.2 and Vue 3.5.41)Local: http://localhost:3000/Network: use --host to expose ➜ DevTools: press Shift + Alt + D in the browser (v3.4.2) Re-optimizing dependencies because vite config has changed Vite client built in 47ms Vite server built in 12ms Nuxt Nitro server built in 505ms nitro Ready in 1.22s http://localhost:3000/config 153ms · modules 86ms · app 162ms · types 136ms · bundle 117ms · server 563mspressh + enterto see available shortcuts Vite server warmed up in 4ms Vite client warmed up in 7ms diff --git a/capture/output/nuxt-dev-plain.txt b/capture/output/nuxt-dev-plain.txt index 6cc44e2c8..c2e988b9e 100644 --- a/capture/output/nuxt-dev-plain.txt +++ b/capture/output/nuxt-dev-plain.txt @@ -1,4 +1,4 @@ -styles: 7e255c9f91b0d90b +styles: a2e3f38c20e4471a press h + enter to see available shortcuts ➜ DevTools: press Shift + Alt + D in the browser (x.y.z) ➜ Local: http://localhost:3000/ @@ -13,9 +13,9 @@ styles: 7e255c9f91b0d90b ✔ Nuxt Nitro server built in 42 ms nitro ✔ Vite client built in 42 ms ✔ Vite server built in 42 ms -⠋ Building server 42 ms · 42 ms -⠋ Bundling app 42 ms · 42 ms -⠋ Generating types 42 ms · 42 ms -⠋ Preparing app 42 ms · 42 ms -⠋ Setting up modules 42 ms · 42 ms +⠋ Building server 42 ms +⠋ Bundling app 42 ms +⠋ Generating types 42 ms +⠋ Preparing app 42 ms +⠋ Setting up modules 42 ms ⠋ Starting Nuxt... 42 ms