",[3162,3165],{"name":3163,"color":3164},"pending triage","E99695",{"name":3166,"color":3167},"needs reproduction","FBCA04",32847,"Incorrect message when updating the version","2025-08-04T07:23:47Z","https://github.com/nuxt/nuxt/issues/32847",0.75543815,{"description":3174,"labels":3175,"number":3182,"owner":3152,"repository":3183,"state":3184,"title":3185,"updated_at":3186,"url":3187,"score":3188},"### Environment\n\n- Operating System: Linux\n- Node Version: v20.17.0\n- Nuxt Version: ^3.13.0\n- CLI Version: 3.14.0\n- Package Manager: bun\n- Nuxt Ui: ^3.0.0-alpha.6\n\n\n### Version\n\n3.0.0-alpha.6\n\n### Reproduction\n\nhttps://github.com/malte-baumann/slideover\n\n1. Clone this repo\n2. bun dev (or similar package manager)\n3. Open http://localhost:3000\n4. Make the screen width smaller than 400.\n5. Click on top or bottom button\n\n### Description\n\nWhen using a Slideover which body height is too large for the screen it should add a scrollbar to handle the overflow. \nLeft and Right side Slideovers are handling this overflow. \n\nWhen using the slideover with side: bottom: \n- No Overflow is found in the dom\n- Content at the very top (including i.e. the close button) is not visible and accessible.\n\n\nWhen using the slideover with side: top: \n- No Overflow is found in the dom\n- Content at the very bottom is not visible and accessible. \n\n\n\n\n\n### Additional context\n\n**Right Side Slideover with scrollbar:**\n\n\n**Bottom Side Slideover without scrollbar and close button:**\n\n\n\n### Logs\n\n_No response_",[3176,3179],{"name":3177,"color":3178},"bug","d73a4a",{"name":3180,"color":3181},"v3","49DCB8",2388,"ui","closed","[Slideover] No Overflow with top / bottom side","2024-10-17T20:45:16Z","https://github.com/nuxt/ui/issues/2388",0.58010244,{"description":3190,"labels":3191,"number":3196,"owner":3152,"repository":3152,"state":3184,"title":3197,"updated_at":3198,"url":3199,"score":3200},"### Environment\r\n\r\n------------------------------\r\n- Operating System: Linux\r\n- Node Version: v22.2.0\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: yarn@1.22.22\r\n- Builder: -\r\n- User Config: devtools, runtimeConfig, css, modules, plugins, googleFonts, pinia, colorMode, postcss, router, vite, compatibilityDate\r\n- Runtime Modules: @pinia/nuxt@0.5.1, @nuxtjs/google-fonts@3.2.0, @nuxtjs/color-mode@3.4.2, shadcn-nuxt@0.10.4, nuxt-swiper@1.2.2, nuxt-marquee@1.0.4, @stefanobartoletti/nuxt-social-share@0.6.1, @nuxt/ui@2.17.0, @nuxt/image@1.7.0\r\n- Build Modules: -\r\n------------------------------\r\n\r\n\r\n### Reproduction\r\n\r\n1. Set up a Nuxt 3 project with SSR enabled.\r\n2. Create a dynamic page pages/posts/[id].vue.\r\n3. Use useSeoMeta to set the following meta tags:\r\n\r\n``` javascript\r\n// posts/[id].vue\r\n[...]\r\nconst store = useStore();\r\nconst route = useRoute();\r\nconst post = computed(() => get(store, \"post\"));\r\n\r\nuseAsyncData(\"post\", async () => {\r\n try {\r\n const { id } = route.params;\r\n await store.fetchPost(id);\r\n fetchSimilarPosts();\r\n return true;\r\n } catch (error) {\r\n console.log(\"Error: \", error);\r\n }\r\n\r\n return true;\r\n});\r\n\r\nuseSeoMeta({\r\n title: () => post.value?.title,\r\n description: () => post.value?.subtitle,\r\n keywords: () => post.value?.categoryName,\r\n author: () => post.value?.authorBy,\r\n ogTitle: () => post.value?.title,\r\n ogDescription: () => post.value?.subtitle,\r\n ogImage: () => post.value?.thumbnail,\r\n ogImageSecureUrl: () => post.value?.thumbnail,\r\n ogImage_alt: () => post.value?.title,\r\n ogType: () => \"article\",\r\n ogUrl: () => `https://mywebsiteurl.com/posts/${post.value?.slug}`,\r\n twitterCard: () => \"summary_large_image\",\r\n twitterTitle: () => post.value?.title,\r\n twitterDescription: () => post.value?.subtitle,\r\n twitterImage: () => post.value?.thumbnail,\r\n ogUpdated_time: () => +new Date(),\r\n});\r\n```\r\n\r\n### Describe the bug\r\n\r\n### Steps Taken:\r\n\r\n- Cleared Facebook cache using the Facebook debugger tool.\r\n- Tested with Facebook debugger - no issues found.\r\n- Tried adding meta tags directly using `\u003CHead>` and `\u003CMeta>`components.\r\n- Included dimensions (width, height) and type for `og:image`.\r\n- Added `og:image:secure_url`.\r\n- Created a Facebook App and added fb:app_id to the meta tags.\r\n\r\n### Expected Behavior:\r\nThe `og:image` should display correctly on Facebook Messenger and WhatsApp when sharing posts.\r\n\r\n### Actual Behavior:\r\nThe `og:image` does not display on Facebook Messenger and WhatsApp, though the title and description are shown correctly. The meta tags work correctly on other platforms (Telegram, LinkedIn, Twitter, LINE, Facebook feed).\r\n\r\n\r\n\r\n### Additional context\r\n\r\nI suspect the issue might be due to the reactive nature of post.value causing the meta tags to be added later in the \u003Chead>, which might lead to them being ignored if there is a size limit. \r\n\r\nHere's from Meta doc\r\n\r\nHowever, I am not able to move all the meta tag from useSeoMeta to the top order in head tag.\r\n\r\n\r\nAny specific configurations or steps to ensure the `og:image` meta tag works correctly on Facebook Messenger and WhatsApp would be greatly appreciated.\r\n\r\n### Logs\r\n\r\n_No response_",[3192,3193],{"name":3163,"color":3164},{"name":3194,"color":3195},"closed-by-bot","ededed",28384,"Issue with useSeoMeta - og:image Not Displayed on Facebook Messenger and WhatsApp","2025-05-12T08:41:48Z","https://github.com/nuxt/nuxt/issues/28384",0.7298118,{"description":3202,"labels":3203,"number":3209,"owner":3152,"repository":3152,"state":3184,"title":3210,"updated_at":3211,"url":3212,"score":3213},"### Environment\n\nNuxi 3.5.3\n\n### Reproduction\n\nThe issue occurred after deployment\n\n### Describe the bug\n\n\r\nAfter refreshing, we can access it normally again\r\n\r\nRefresh Again\r\n\r\n\n\n### Additional context\n\nIs it because my nuxt.config.ts configuration content is incorrect\n\n### Logs\n\n_No response_",[3204,3207,3208],{"name":3205,"color":3206},"3.x","29bc7f",{"name":3163,"color":3164},{"name":3166,"color":3167},23208,"Storing image resources in the public directory may occasionally result in the inability to find image resources","2023-11-15T19:14:51Z","https://github.com/nuxt/nuxt/issues/23208",0.7408242,{"description":3215,"labels":3216,"number":3219,"owner":3152,"repository":3220,"state":3184,"title":3221,"updated_at":3222,"url":3223,"score":3224},"",[3217],{"name":3177,"color":3218},"ff281a",504,"nuxt.com","[Company] `/support` showcases carousel invalid images","2023-02-15T12:32:27Z","https://github.com/nuxt/nuxt.com/issues/504",0.7431039,{"description":3226,"labels":3227,"number":3219,"owner":3152,"repository":3235,"state":3184,"title":3236,"updated_at":3237,"url":3238,"score":3224},"Hi! I'm having an issue when I have nuxt plugins that are async. All my injections from plugins stop working in tests, not only the ones from the async plugin.\r\n\r\nRepro: https://stackblitz.com/edit/nuxt-starter-ycmw52",[3228,3229,3232],{"name":3177,"color":3178},{"name":3230,"color":3231},"vitest-environment","b60205",{"name":3233,"color":3234},"good reproduction ✨","087F54","test-utils","Async nuxt plugin break injections from all plugins","2023-12-02T00:17:07Z","https://github.com/nuxt/test-utils/issues/504",{"description":3240,"labels":3241,"number":3245,"owner":3152,"repository":3152,"state":3184,"title":3246,"updated_at":3247,"url":3248,"score":3249},"### Environment\n\nI get an error when I run the package\r\n\r\n\u003Cimg width=\"1552\" alt=\"截屏2023-02-27 06 49 39\" src=\"https://user-images.githubusercontent.com/86544347/221442214-29beb35c-51c3-4edd-90c8-e71cb6f0ffe3.png\">\r\n\n\n### Reproduction\n\nI get an error when I run the package\r\n\r\n\u003Cimg width=\"1552\" alt=\"截屏2023-02-27 06 49 39\" src=\"https://user-images.githubusercontent.com/86544347/221442214-29beb35c-51c3-4edd-90c8-e71cb6f0ffe3.png\">\r\n\n\n### Describe the bug\n\nI get an error when I run the package\r\n\r\n\u003Cimg width=\"1552\" alt=\"截屏2023-02-27 06 49 39\" src=\"https://user-images.githubusercontent.com/86544347/221442214-29beb35c-51c3-4edd-90c8-e71cb6f0ffe3.png\">\r\n\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[3242,3243,3244],{"name":3205,"color":3206},{"name":3163,"color":3164},{"name":3166,"color":3167},19296,"Cannot find `client.manifest.mjs`","2023-03-16T15:52:23Z","https://github.com/nuxt/nuxt/issues/19296",0.744422,{"description":3251,"labels":3252,"number":3255,"owner":3152,"repository":3152,"state":3184,"title":3256,"updated_at":3257,"url":3258,"score":3259},"### Environment\n\n\"nuxt\": \"^3.3.3\",\n\n### Reproduction\n\n\u003Cimg width=\"359\" alt=\"image\" src=\"https://user-images.githubusercontent.com/33872307/233527447-89b7daec-fd35-4b47-adb1-f981d7d1172b.png\">\r\n\n\n### Describe the bug\n\n![Uploading image.png…]()\r\n\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[3253,3254],{"name":3205,"color":3206},{"name":3163,"color":3164},20428,"nuxt3 打包后 组件的样式会重复加载 也没办法 提取页面的样式到独立文件上不利于SEO","2023-04-27T08:23:29Z","https://github.com/nuxt/nuxt/issues/20428",0.7467646,{"description":3160,"labels":3261,"number":3264,"owner":3152,"repository":3265,"state":3184,"title":3169,"updated_at":3266,"url":3267,"score":3268},[3262],{"name":3166,"color":3263},"9F4F33",996,"cli","2025-08-09T15:11:25Z","https://github.com/nuxt/cli/issues/996",0.74753696,["Reactive",3270],{},["Set"],["ShallowReactive",3273],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$f04Sy0hJt2EDT9NU2nwz-iUMe0uvSC-O1RA67OnIK2ng":-1},"/nuxt/ui/2759"]