\r\n \u003C/NuxtLayout>\r\n \u003C/div>\r\n\u003C/template>\r\n```\r\n\r\n- Run the project with `npm run dev` and note that the page has not loaded:\r\n```\r\nPlugin by my-module!\r\n√ Vite server hmr 4 files in 50.259ms\r\n[Vue warn]: Failed to resolve component: NuxtPage\r\nIf this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement.\r\nPlugin by my-module!\r\n[Vue warn]: Component \u003CAnonymous> is missing template or render function.\r\n√ Vite server hmr 4 files in 143.147ms\r\n[Vue warn]: Failed to resolve component: NuxtPage\r\nIf this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement.\r\nPlugin by my-module!\r\n```\n\n### Describe the bug\n\nNuxt cleverly strips out all router functionality if a project does not have a pages directory. However, this functionality is still removed if an installed module calls 'extendPages', so modules can't actually provide pages unless the project itself already has some, which may not always be the case.\r\n\r\nI think router functionality should be preserved by Nuxt if `extendPages` is called.\r\n\n\n### Additional context\n\nI am creating a module which creates a catch all page so I can do my own routing. I don't want to need to create a page in every project in order for my module's page to take effect. I can imagine other modules will want to act similarly, even if they're only providing more specific routes/pages.\n\n### Logs\n\n_No response_",[3153,3154],{"name":3138,"color":3139},{"name":3141,"color":3142},15060,"Nuxt does not include router functionality when a module calls extendPages unless the project has its own pages directory","2023-01-19T17:44:18Z","https://github.com/nuxt/nuxt/issues/15060",0.641919,{"description":3161,"labels":3162,"number":3165,"owner":3144,"repository":3144,"state":3145,"title":3166,"updated_at":3167,"url":3168,"score":3169},"### Environment\n\n------------------------------\r\n- Operating System: `Windows_NT`\r\n- Node Version: `v16.17.0`\r\n- Nuxt Version: `3.0.0`\r\n- Nitro Version: `2.0.0-27860563.409fe2b`\r\n- Package Manager: `pnpm@7.8.0`\r\n- Builder: `vite`\r\n- User Config: `-`\r\n- Runtime Modules: `-`\r\n- Build Modules: `-`\r\n------------------------------\n\n### Reproduction\n\nhttps://github.com/nuxt/framework/blob/main/packages/nuxt/src/pages/module.ts\n\n### Describe the bug\n\nHi :wave: , I'm not sure if this is a bug or if this should be converted into a discussion.\r\n\r\n Currently i'm using the `router.options.ts` on one project to define my routes. I've tried to use `@nuxtjs/i18n` for lang translation but i've been struggling to make it work. \r\n\r\n i18n use `page:extends` to prefix routes. However, `router.options.ts` routes are being added after the `page:extend` hook as you can see [here ](https://github.com/nuxt/framework/blob/9de94c21cf7fa7008c75f859e0299e3f1c0b445c/packages/nuxt/src/pages/module.ts#L187-L211) .\r\n We also can't add it through the nuxt config due to the type `RouterConfigSerializable`.\r\n\r\n Can we maybe merge the routes generated from the `page` dir and those provided by `router.options.ts` ?\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[3163,3164],{"name":3138,"color":3139},{"name":3141,"color":3142},12335,"app/router.options pages are not in `page:extend` hook","2023-01-30T11:57:17Z","https://github.com/nuxt/nuxt/issues/12335",0.64776665,{"description":3171,"labels":3172,"number":3178,"owner":3144,"repository":3144,"state":3145,"title":3179,"updated_at":3180,"url":3181,"score":3182},"### Environment\r\n\r\nI've just created Nuxt 3 project but there are some type errors right out of the box.\r\n\r\n\r\n\r\n```\r\nProperty '$route' does not exist on type '{ $: ComponentInternalInstance; $data: {}; $props: { key?: string | number | symbol | undefined; ref?: VNodeRef | undefined; ref_for?: boolean | undefined; ... 8 more ...; style?: unknown; }; ... 10 more ...; $watch\u003CT extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (arg...'.\r\n```\r\n\r\n```\r\nCannot find name 'useRoute'.\r\n```\r\n\r\nHow to fix these errors?\r\n\r\n### Reproduction\r\n\r\n1) Create new Nuxt 3 project\r\n2) Set `pages: true` option in `nuxt.config` file\r\n3) Create `pages` folder\r\n4) Add `\u003CNuxtPage />` into `app.vue` file.\r\n5) Add some page in `pages` folder\r\n6) See type errors when using `$route` in the template or global `useRoute()` function in composition API.\r\n\r\n### Describe the bug\r\n\r\nThere are type errors when just using Nuxt 3 pages router out of the box.\r\n\r\n### Additional context\r\n\r\n**package.json**\r\n\r\n```\r\n{\r\n \"name\": \"my-new-nuxt-app\",\r\n \"private\": true,\r\n \"scripts\": {\r\n \"build\": \"nuxt build\",\r\n \"dev\": \"nuxt dev\",\r\n \"generate\": \"nuxt generate\",\r\n \"preview\": \"nuxt preview\",\r\n \"postinstall\": \"nuxt prepare\"\r\n },\r\n \"devDependencies\": {\r\n \"@nuxt/devtools\": \"^0.5.5\",\r\n \"@types/node\": \"^18.16.18\",\r\n \"nuxt\": \"^3.6.1\"\r\n },\r\n \"overrides\": {\r\n \"vue\": \"latest\"\r\n }\r\n}\r\n```\r\n\r\n**app.vue**\r\n\r\n```\r\n\u003Ctemplate>\r\n \u003Cdiv>\r\n \u003CNuxtPage />\r\n \u003C/div>\r\n\u003C/template>\r\n```\r\n\r\n**pages/[code].vue**\r\n\r\n```\r\n\u003Ctemplate>\r\n \u003Cdiv>\r\n \u003Cp>{{ $route.params.code }}\u003C/p>\r\n \u003C/div>\r\n\u003C/template>\r\n\r\n\u003Cscript setup lang=\"ts\">\r\n const route = useRoute()\r\n console.log('code:', route.params.code)\r\n\u003C/script>\r\n```\r\n\r\n**nuxt.config.ts**\r\n\r\n```\r\n// https://nuxt.com/docs/api/configuration/nuxt-config\r\nexport default defineNuxtConfig({\r\n devtools: { enabled: true },\r\n pages: true,\r\n})\r\n```\r\n\r\nVS Code\r\nNode v16.14.2\r\nNPM 8.5.0\r\n\r\n### Logs\r\n\r\n_No response_",[3173,3174,3175],{"name":3138,"color":3139},{"name":3141,"color":3142},{"name":3176,"color":3177},"needs reproduction","FBCA04",21859,"Pages route type issue","2023-06-29T10:04:02Z","https://github.com/nuxt/nuxt/issues/21859",0.6529993,{"labels":3184,"number":3195,"owner":3144,"repository":3144,"state":3145,"title":3196,"updated_at":3197,"url":3198,"score":3199},[3185,3188,3189,3192],{"name":3186,"color":3187},"enhancement","8DEF37",{"name":3138,"color":3139},{"name":3190,"color":3191},"pages","00DFB5",{"name":3193,"color":3194},"🍰 p2-nice-to-have","0E8A16",13854,"how to use hooks pages.extend to config named route view?","2024-06-17T17:47:50Z","https://github.com/nuxt/nuxt/issues/13854",0.6551476,{"description":3201,"labels":3202,"number":3209,"owner":3144,"repository":3144,"state":3145,"title":3210,"updated_at":3211,"url":3212,"score":3213},"### Environment\r\n\r\nNuxi 3.0.0-rc.12 10:45:12\r\nRootDir: D:/sites/dog-ville-nuxt/dog-ville 10:45:13\r\nNuxt project info: 10:45:13\r\n\r\n------------------------------\r\n- Operating System: `Windows_NT`\r\n- Node Version: `v16.17.0`\r\n- Nuxt Version: `3.0.0-rc.12`\r\n- Nitro Version: `0.6.0`\r\n- Package Manager: `npm@8.15.0`\r\n- Builder: `vite`\r\n- User Config: `runtimeConfig`, `modules`, `tailwindcss`, `css`\r\n- Runtime Modules: `@nuxtjs/tailwindcss@5.3.5`\r\n- Build Modules: `-`\r\n\r\n### Reproduction\r\n\r\nPreviously i was at 11 release candidate. Iam update to new version via changing file package json from\r\n`\"nuxt\": \"3.0.0-rc.11\"` to `\"nuxt\": \"3.0.0-rc.12\"` \r\nAnd execute command npx nuxi@latest cleanup\r\nBefore that everything works fine. After update starts errror\r\n\r\n```\r\n[Vue warn]: injection \"Symbol(route location)\" not found.\r\n[Vue warn]: Unhandled error during execution of render function \r\n at \u003CAnonymous >\r\n[nitro] [dev] [unhandledRejection] TypeError: Cannot read properties of undefined (reading 'meta')\r\nat ReactiveEffect.fn (D:/sites/dog-ville-nuxt/dog-ville/node_modules/nuxt/dist/app/components/layout.mjs:54:106)\r\n```\r\n\r\n### Describe the bug\r\n\r\nIam go to this file and see that this code have this error\r\n```\r\nsetup(props, context) {\r\n const injectedRoute = inject(\"_route\");\r\n const route = injectedRoute === useRoute() ? useVueRouterRoute() : injectedRoute;\r\n const layout = computed(() => unref(props.name) ?? route.meta.layout ?? \"default\");\r\n let vnode;\r\n let _layout;\r\n```\r\nspecific this part route.meta.layout . Iam try to log what is it, something like this\r\n```\r\nsetup(props, context) {\r\n const injectedRoute = inject(\"_route\");\r\n const route = injectedRoute === useRoute() ? useVueRouterRoute() : injectedRoute;\r\n \r\n console.log(1)\r\n console.log(route)\r\n console.log(2)\r\n \r\n const layout = computed(() => unref(props.name) ?? route.meta.layout ?? \"default\");\r\n let vnode;\r\n let _layout;\r\n```\r\nAnd route was undefined. Iam going to different pages and everywhere this error. In more specific, this function is undefined useVueRouterRoute().\r\n \r\nCan somebody help with it?",[3203,3204,3207],{"name":3138,"color":3139},{"name":3205,"color":3206},"bug","d73a4a",{"name":3208,"color":3177},"🔨 p3-minor",15236,"`\u003CNuxtLayout>` does not work without `pages/` integration","2023-01-19T17:46:38Z","https://github.com/nuxt/nuxt/issues/15236",0.6562855,{"description":3215,"labels":3216,"number":3219,"owner":3144,"repository":3144,"state":3145,"title":3220,"updated_at":3221,"url":3222,"score":3223},"### Environment\n\n------------------------------\r\n- Operating System: Darwin\r\n- Node Version: v16.20.0\r\n- Nuxt Version: 3.7.0\r\n- CLI Version: 3.7.2\r\n- Nitro Version: 2.6.2\r\n- Package Manager: pnpm@8.6.5\r\n- Builder: -\r\n- User Config: components, typescript, runtimeConfig, modules, htmlValidator, vite, css, app, tailwindcss, nitro, hooks, experimental\r\n- Runtime Modules: @pinia/nuxt@0.4.11, @nuxtjs/tailwindcss@6.8.0, @nuxtjs/html-validator@1.5.2\r\n- Build Modules: -\r\n------------------------------\n\n### Reproduction\n\nReproduction with `pages:extend`\r\nhttps://stackblitz.com/edit/nuxt-starter-zkywrm?file=nuxt.config.ts\r\nReproduction with `module`\r\nhttps://stackblitz.com/edit/nuxt-starter-3bxtzr?file=modules%2Fpages.ts\n\n### Describe the bug\n\nI can't add additional routes inside the children option, the router takes the file that is specified in the top level.\r\n\r\nExample: \r\n`nuxt.config.ts`\r\n```Typescript\r\n'pages:extend'(_pages) {\r\n _pages.push(\r\n ...[\r\n {\r\n name: 'main-page',\r\n path: '/',\r\n file: '@/additional/index.vue',\r\n },\r\n {\r\n name: 'contacts-page',\r\n path: '/contacts',\r\n file: '@/additional/contacts/index.vue',\r\n children: [\r\n {\r\n name: 'contacts-child-page',\r\n path: ':id',\r\n file: '@/additional/contacts/child.vue', // not-work :(\r\n },\r\n ],\r\n },\r\n ]\r\n );\r\n },\r\n```\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[3217,3218],{"name":3138,"color":3139},{"name":3141,"color":3142},22984,"Can't extend children routes","2023-09-04T11:56:19Z","https://github.com/nuxt/nuxt/issues/22984",0.6583209,{"description":3225,"labels":3226,"number":3233,"owner":3144,"repository":3144,"state":3145,"title":3234,"updated_at":3235,"url":3236,"score":3237},"### Environment\r\n\r\n- Operating System: `Darwin`\r\n- Node Version: `v20.12.1`\r\n- Nuxt Version: `3.12.3`\r\n- CLI Version: `3.12.0`\r\n- Nitro Version: `2.9.7`\r\n- Package Manager: `npm@10.5.0`\r\n- Builder: `-`\r\n- User Config: `app`, `appConfig`, `vite`, `css`, `components`, `modules`, `formkit`, `experimental`, `nitro`, `sourcemap`, `runtimeConfig`, `postcss`, `devtools`, `typescript`\r\n- Runtime Modules: `nuxt-vitest@0.10.5`, `@vueuse/nuxt@10.11.0`, `@pinia/nuxt@0.5.1`, `@formkit/nuxt@1.6.5`\r\n- Build Modules: `-`\r\n\r\n\r\n### Reproduction\r\n\r\nhttps://stackblitz.com/edit/nuxt-starter-c2dzdp\r\n\r\nInstructions are on the site.\r\n\r\n### Describe the bug\r\n\r\nStarting with Nuxt 3.12.0, Nuxt is no longer calling key functions defined in `definePageMeta` for pages added via `pages:extend` hook. This results in pages re-mounting unexpectedly. In our case, we have a couple of routes all going to the same page component. We use `definePageMeta/key` to make sure the app re-mounts when specific url data changes.\r\n\r\nIt seems to be related to this change, https://github.com/nuxt/nuxt/pull/27134/files.\r\nIf I set `scanPageMeta: false`, it works as expected.\r\n\r\n### Additional context\r\nPossibly related to https://github.com/nuxt/nuxt/issues/28086\r\n\r\nPages added via /pages folder seem fine.\r\n",[3227,3228,3229,3230],{"name":3138,"color":3139},{"name":3205,"color":3206},{"name":3190,"color":3191},{"name":3231,"color":3232},"possible regression","B90A42",28122,"Nuxt 3.12.0 no longer calls route key functions in definePageMeta for routes created by the pages:extend hook","2025-01-21T17:16:43Z","https://github.com/nuxt/nuxt/issues/28122",0.66016704,{"description":3239,"labels":3240,"number":3243,"owner":3144,"repository":3144,"state":3145,"title":3244,"updated_at":3245,"url":3246,"score":3247},"### Environment\n\nNuxt project info: 12:51:50 PM\r\n\r\n------------------------------\r\n- Operating System: Linux\r\n- Node Version: v20.11.0\r\n- Nuxt Version: 3.10.1\r\n- CLI Version: 3.10.0\r\n- Nitro Version: 2.8.1\r\n- Package Manager: npm@10.2.4\r\n- Builder: -\r\n- User Config: experimental, app, appConfig, css, debug, devServer, devtools, hooks, modules, runtimeConfig, sourcemap, srcDir, telemetry, vite, nitro, defaults, mapRoute\r\n- Runtime Modules: nuxt-bugsnag@7.2.3, @nuxtjs/tailwindcss@6.10.4, nuxt-lazy-hydrate@1.0.0, @pinia/nuxt@0.5.1, @pinia-plugin-persistedstate/nuxt@1.2.0, @nuxtjs/device@3.1.1\r\n- Build Modules: -\r\n------------------------------\n\n### Reproduction\n\nhttps://stackblitz.com/edit/nuxt-starter-vlcm6u?file=nuxt.config.ts\r\n\r\nGo to nuxt.config.ts and uncomment the route with a redirect key\n\n### Describe the bug\n\nWhen creating the routes using the hook `pages:extend` if a route contains the property redirect, the app won't render and will show some errors in the console.\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n[nuxt] error caught during app initialization TypeError: aliases is not iterable\r\n at addRoute (vue-router.js?v=179660f4:1065:27)\r\n at vue-router.js?v=179660f4:1219:29\r\n at Array.forEach (\u003Canonymous>)\r\n at createRouterMatcher (vue-router.js?v=179660f4:1219:10)\r\n at createRouter (vue-router.js?v=179660f4:2233:19)\r\n at setup (router.js?v=179660f4:46:20)\r\n at client.mjs:30:69\r\n at executeAsync (index.mjs?v=179660f4:111:19)\r\n at setup (client.mjs:30:43)\r\n at nuxt.js?v=179660f4:111:60\r\n\r\nchunk-UKZM2QLG.js?v=179660f4:1502 [Vue warn]: Invalid vnode type when creating vnode: undefined. \r\n at \u003CNuxtRoot>\r\nwarn$1 @ chunk-UKZM2QLG.js?v=179660f4:1502\r\n_createVNode @ chunk-UKZM2QLG.js?v=179660f4:8630\r\ncreateVNodeWithArgsTransform @ chunk-UKZM2QLG.js?v=179660f4:8557\r\ncreateBlock @ chunk-UKZM2QLG.js?v=179660f4:8531\r\n(anonymous) @ nuxt-root.vue:76\r\nrenderFnWithContext @ chunk-UKZM2QLG.js?v=179660f4:2275\r\nnormalizeSuspenseSlot @ chunk-UKZM2QLG.js?v=179660f4:3177\r\nnormalizeSuspenseChildren @ chunk-UKZM2QLG.js?v=179660f4:3164\r\ncreateBaseVNode @ chunk-UKZM2QLG.js?v=179660f4:8605\r\n_createVNode @ chunk-UKZM2QLG.js?v=179660f4:8680\r\ncreateVNodeWithArgsTransform @ chunk-UKZM2QLG.js?v=179660f4:8557\r\ncreateBlock @ chunk-UKZM2QLG.js?v=179660f4:8531\r\n_sfc_render @ nuxt-root.vue:62\r\nrenderComponentRoot @ chunk-UKZM2QLG.js?v=179660f4:2334\r\nhydrateSubTree @ chunk-UKZM2QLG.js?v=179660f4:7407\r\ncomponentUpdateFn @ chunk-UKZM2QLG.js?v=179660f4:7434\r\nrun @ chunk-UKZM2QLG.js?v=179660f4:429\r\ninstance.update @ chunk-UKZM2QLG.js?v=179660f4:7571\r\nsetupRenderEffect @ chunk-UKZM2QLG.js?v=179660f4:7581\r\nmountComponent @ chunk-UKZM2QLG.js?v=179660f4:7349\r\nhydrateNode @ chunk-UKZM2QLG.js?v=179660f4:6220\r\nhydrate2 @ chunk-UKZM2QLG.js?v=179660f4:6082\r\nmount @ chunk-UKZM2QLG.js?v=179660f4:5364\r\napp.mount @ chunk-UKZM2QLG.js?v=179660f4:11076\r\ninitApp @ entry.js:55\r\nawait in initApp (async)\r\n(anonymous) @ entry.js:65\r\nShow 26 more frames\r\nShow less\r\nchunk-UKZM2QLG.js?v=179660f4:1502 [Vue warn]: \u003CSuspense> slots expect a single root node. \r\n at \u003CNuxtRoot>\r\nwarn$1 @ chunk-UKZM2QLG.js?v=179660f4:1502\r\nnormalizeSuspenseSlot @ chunk-UKZM2QLG.js?v=179660f4:3187\r\nnormalizeSuspenseChildren @ chunk-UKZM2QLG.js?v=179660f4:3164\r\ncreateBaseVNode @ chunk-UKZM2QLG.js?v=179660f4:8605\r\n_createVNode @ chunk-UKZM2QLG.js?v=179660f4:8680\r\ncreateVNodeWithArgsTransform @ chunk-UKZM2QLG.js?v=179660f4:8557\r\ncreateBlock @ chunk-UKZM2QLG.js?v=179660f4:8531\r\n_sfc_render @ nuxt-root.vue:62\r\nrenderComponentRoot @ chunk-UKZM2QLG.js?v=179660f4:2334\r\nhydrateSubTree @ chunk-UKZM2QLG.js?v=179660f4:7407\r\ncomponentUpdateFn @ chunk-UKZM2QLG.js?v=179660f4:7434\r\nrun @ chunk-UKZM2QLG.js?v=179660f4:429\r\ninstance.update @ chunk-UKZM2QLG.js?v=179660f4:7571\r\nsetupRenderEffect @ chunk-UKZM2QLG.js?v=179660f4:7581\r\nmountComponent @ chunk-UKZM2QLG.js?v=179660f4:7349\r\nhydrateNode @ chunk-UKZM2QLG.js?v=179660f4:6220\r\nhydrate2 @ chunk-UKZM2QLG.js?v=179660f4:6082\r\nmount @ chunk-UKZM2QLG.js?v=179660f4:5364\r\napp.mount @ chunk-UKZM2QLG.js?v=179660f4:11076\r\ninitApp @ entry.js:55\r\nawait in initApp (async)\r\n(anonymous) @ entry.js:65\r\nShow 21 more frames\r\nShow less\r\nchunk-UKZM2QLG.js?v=179660f4:2897 \u003CSuspense> is an experimental feature and its API will likely change.\r\nchunk-UKZM2QLG.js?v=179660f4:1502 [Vue warn]: Hydration node mismatch:\r\n- rendered on server: \u003Cdiv class=\"font-sans antialiased bg-white px-10 pt-14 dark:bg-black text-black dark:text-white min-h-screen flex flex-col\" data-v-inspector=\"node_modules/@nuxt/ui-templates/dist/templates/error-dev.vue:40:1\" data-v-6b2d7187>…\u003C/div> \r\n- expected on client: Symbol(v-cmt) \r\n at \u003CNuxtRoot>\r\nwarn$1 @ chunk-UKZM2QLG.js?v=179660f4:1502\r\nhandleMismatch @ chunk-UKZM2QLG.js?v=179660f4:6450\r\nonMismatch @ chunk-UKZM2QLG.js?v=179660f4:6091\r\nhydrateNode @ chunk-UKZM2QLG.js?v=179660f4:6156\r\nhydrateSuspense @ chunk-UKZM2QLG.js?v=179660f4:3148\r\nhydrateNode @ chunk-UKZM2QLG.js?v=179660f4:6256\r\nhydrateSubTree @ chunk-UKZM2QLG.js?v=179660f4:7414\r\ncomponentUpdateFn @ chunk-UKZM2QLG.js?v=179660f4:7434\r\nrun @ chunk-UKZM2QLG.js?v=179660f4:429\r\ninstance.update @ chunk-UKZM2QLG.js?v=179660f4:7571\r\nsetupRenderEffect @ chunk-UKZM2QLG.js?v=179660f4:7581\r\nmountComponent @ chunk-UKZM2QLG.js?v=179660f4:7349\r\nhydrateNode @ chunk-UKZM2QLG.js?v=179660f4:6220\r\nhydrate2 @ chunk-UKZM2QLG.js?v=179660f4:6082\r\nmount @ chunk-UKZM2QLG.js?v=179660f4:5364\r\napp.mount @ chunk-UKZM2QLG.js?v=179660f4:11076\r\ninitApp @ entry.js:55\r\nawait in initApp (async)\r\n(anonymous) @ entry.js:65\r\nShow 18 more frames\r\nShow less\r\nchunk-UKZM2QLG.js?v=179660f4:6086 Hydration completed but contains mismatches.\r\nhydrate2 @ chunk-UKZM2QLG.js?v=179660f4:6086\r\nmount @ chunk-UKZM2QLG.js?v=179660f4:5364\r\napp.mount @ chunk-UKZM2QLG.js?v=179660f4:11076\r\ninitApp @ entry.js:55\r\nawait in initApp (async)\r\n(anonymous) @ entry.js:65\r\nShow 5 more frames\r\nShow less\r\nnuxt.js?v=179660f4:98 [nuxt] error caught during app initialization TypeError: Cannot read properties of undefined (reading 'beforeEach')\r\n at setup (nuxt-root.vue:23:14)\r\n at callWithErrorHandling (chunk-UKZM2QLG.js?v=179660f4:1650:18)\r\n at setupStatefulComponent (chunk-UKZM2QLG.js?v=179660f4:9046:25)\r\n at setupComponent (chunk-UKZM2QLG.js?v=179660f4:9007:36)\r\n at mountComponent (chunk-UKZM2QLG.js?v=179660f4:7337:7)\r\n at hydrateNode (chunk-UKZM2QLG.js?v=179660f4:6220:11)\r\n at hydrate2 (chunk-UKZM2QLG.js?v=179660f4:6082:5)\r\n at mount (chunk-UKZM2QLG.js?v=179660f4:5364:13)\r\n at app.mount (chunk-UKZM2QLG.js?v=179660f4:11076:14)\r\n at initApp (entry.js:55:14)\n```\n",[3241,3242],{"name":3138,"color":3139},{"name":3141,"color":3142},25663,"Redirect property on route entry using pages:extend causes the app to break","2024-02-07T10:00:20Z","https://github.com/nuxt/nuxt/issues/25663",0.6623846,{"labels":3249,"number":3252,"owner":3144,"repository":3144,"state":3145,"title":3253,"updated_at":3254,"url":3255,"score":3256},[3250,3251],{"name":3138,"color":3139},{"name":3205,"color":3206},12013,"Nested Pages(NuxtPage) was not working","2023-01-19T15:53:23Z","https://github.com/nuxt/nuxt/issues/12013",0.6650058,["Reactive",3258],{},["Set"],["ShallowReactive",3261],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$f-LuavbApxZ_zqze6dEs7fN1o3RG3_LULDhnwMtmp1rs":-1},"/nuxt/nuxt/19940"]