",[3145,3148],{"name":3146,"color":3147},"pending triage","E99695",{"name":3149,"color":3150},"needs reproduction","FBCA04",32847,"nuxt","open","Incorrect message when updating the version","2025-08-04T07:23:47Z","https://github.com/nuxt/nuxt/issues/32847",0.69502044,{"description":3159,"labels":3160,"number":3162,"owner":3152,"repository":3152,"state":3153,"title":3163,"updated_at":3164,"url":3165,"score":3166},"### Describe the feature\n\nauto finish app baseURL public static img.\r\n\r\n\u003Cimg width=\"1275\" alt=\"image\" src=\"https://github.com/nuxt/nuxt/assets/40666434/2a0df777-6ba3-45bb-a309-1a5af84671ba\">\r\n\n\n### Additional information\n\n- [ ] Would you be willing to help implement this feature?\n- [ ] Could this feature be implemented as a module?\n\n### Final checks\n\n- [X] Check existing [discussions](https://github.com/nuxt/nuxt/discussions) and [issues](https://github.com/nuxt/nuxt/issues).\n- [X] Read the [contribution guide](https://nuxt.com/docs/community/contribution).\n",[3161],{"name":3146,"color":3147},26848,"auto finish app baseURL public static img","2024-06-30T11:04:24Z","https://github.com/nuxt/nuxt/issues/26848",0.71212906,{"description":3168,"labels":3169,"number":1235,"owner":3152,"repository":3173,"state":3174,"title":3175,"updated_at":3176,"url":3177,"score":3178},"```[tasklist]\r\n### Tasks\r\n- [x] basic information here on usage and how the module works\r\n- [x] example of how to write a custom provider (+ register one in a module)\r\n- [x] more examples on customisation and advanced usage\r\n```",[3170],{"name":3171,"color":3172},"documentation","0075ca","fonts","closed","initial documentation","2024-02-22T14:31:41Z","https://github.com/nuxt/fonts/issues/6",0.56092775,{"description":3180,"labels":3181,"number":1029,"owner":3152,"repository":3173,"state":3174,"title":3188,"updated_at":3189,"url":3190,"score":3191},"https://developers.cloudflare.com/speed/optimization/content/fonts/",[3182,3185],{"name":3183,"color":3184},"enhancement","a2eeef",{"name":3186,"color":3187},"provider","1161A4","cloudflare font provider","2024-02-29T10:14:09Z","https://github.com/nuxt/fonts/issues/21",0.6456238,{"description":3193,"labels":3194,"number":3196,"owner":3152,"repository":3173,"state":3174,"title":3197,"updated_at":3198,"url":3199,"score":3200},"I propose adding an option so that the generated CSS for a font does not contain the `src: local(\"...\")` or puts it behind the font url like so: `src: url(...), local(...)`. I'm not actually sure if changing the order even works but let me just explain my rationale:\r\n\r\nI am using `Josefin Sans`, a font with many variable weights from Google. For some reason, the font rendered correctly in Chrome/Firefox on Fedora but on Windows it only rendered correctly in Firefox. The difference between my Linux and Windows installation was that I had `Josefin Sans` installed locally on Windows. This caused my local font to load instead of the one fetched from Google Fonts. The problem was that my local installation of this font was somehow corrupted with all font-weights being replaced by 100 resulting in Chrome loading the font-weight: 100 version instead of the font-weight: 300 version. Uninstalling my local version of this font fixed the issue.\r\n\r\nWhile searching for local fonts is a sensible default, I think we should have the option to opt out of that and only use the font from our server instead. You can never really know what font version a user has installed under the same name as your font or if the user's installation is incorrect. I think this is an important option for websites that prioritize their presentation over their load times.\r\n\r\nIf this feature is desired, I would be happy to work on a pull request. This issue is actually reproducible on my machine but I have doubts that it would be easy to reproduce on any system. But just in case, someone wants to try, here are the steps:\r\n\r\n1. Download font: https://fonts.google.com/specimen/Josefin+Sans\r\n2. Install font\r\n3. Start website (https://github.com/konstantin-lukas/nuxt-portfolio)\r\n4. Open locally running website in Chrome on Windows",[3195],{"name":3183,"color":3184},211,"Allow option to prevent local source or lower priority of local source","2024-09-11T22:31:05Z","https://github.com/nuxt/fonts/issues/211",0.68642724,{"description":3202,"labels":3203,"number":1044,"owner":3152,"repository":3173,"state":3174,"title":3207,"updated_at":3208,"url":3209,"score":3210},"I can't see it mentioned in the README how this use case would be handled, so I thought I'd open an issue to get it clarified, then I can submit a PR for the docs.\r\n\r\nFor font faces that have the same name but multiple font-weights, how would we handle the configuration for this?\r\n\r\nE.G.\r\n\r\n```\r\n@font-face {\r\n font-display: swap;\r\n font-style: normal;\r\n font-weight: 400;\r\n font-family: 'Tenon';\r\n src:\r\n local('Tenon Regular'),\r\n local('Tenon-Regular'),\r\n local('TenonRegular'),\r\n url('/fonts/tenon_regular.woff2') format('woff2'),\r\n url('/fonts/tenon_regular.woff') format('woff');\r\n}\r\n\r\n/* Tenon */\r\n/* Font weight: Medium */\r\n@font-face {\r\n font-display: swap;\r\n font-style: normal;\r\n font-weight: 500;\r\n font-family: 'Tenon';\r\n src:\r\n local('Tenon Medium'),\r\n local('Tenon-Medium'),\r\n local('TenonMedium'),\r\n url('/fonts/tenon_medium.woff2') format('woff2'),\r\n url('/fonts/tenon_medium.woff') format('woff');\r\n}\r\n\r\n/* Tenon */\r\n/* Font weight: Bold */\r\n@font-face {\r\n font-display: swap;\r\n font-style: normal;\r\n font-weight: 700;\r\n font-family: 'Tenon';\r\n src:\r\n local('Tenon Bold'),\r\n local('Tenon-Bold'),\r\n local('TenonBold'),\r\n url('/fonts/tenon_bold.woff2') format('woff2'),\r\n url('/fonts/tenon_bold.woff') format('woff');\r\n}\r\n```\r\n\r\nThis has 3 font files for Tenon, but all under the `font-family: 'Tenon'`. Changing the `font-weight` lets the browser choose the right font file automatically.\r\n\r\nJust wondering how we'd set this up, as well as get the local fallbacks.\r\n\r\nOut of the box I just get the 400 weight font files, and no local fallback",[3204],{"name":3205,"color":3206},"bug","d73a4a","Local fonts with multiple weights but same name","2024-03-23T16:55:32Z","https://github.com/nuxt/fonts/issues/22",0.6872707,{"labels":3212,"number":3217,"owner":3152,"repository":3152,"state":3174,"title":3218,"updated_at":3219,"url":3220,"score":3221},[3213,3214],{"name":3146,"color":3147},{"name":3215,"color":3216},"2.x","d4c5f9",10654,"Babel cannot transform es6 code in template tag","2023-01-22T15:48:35Z","https://github.com/nuxt/nuxt/issues/10654",0.7064865,{"description":3223,"labels":3224,"number":3226,"owner":3152,"repository":3227,"state":3174,"title":3228,"updated_at":3229,"url":3230,"score":3231},"### Environment\n\n- Operating System: `Darwin`\r\n- Node Version: `v22.3.0`\r\n- Nuxt Version: `3.13.1`\r\n- CLI Version: `3.13.1`\r\n- Nitro Version: `2.9.7`\r\n- Package Manager: `yarn@1.22.22`\r\n- Builder: `-`\r\n- User Config: `compatibilityDate`, `devtools`, `modules`, `plugins`, `runtimeConfig`, `i18n`\r\n- Runtime Modules: `@nuxt/ui@2.18.4`, `@nuxtjs/i18n@8.5.1`\r\n- Build Modules: `-`\r\n\n\n### Version\n\nv2.18.4\n\n### Reproduction\n\nhttps://stackblitz.com/edit/nuxt-ui-jfdc58?file=app.vue,app.config.ts\n\n### Description\n\n## Description\r\nThe Nuxt UI notification component is currently being created and added to the DOM even when no toast has been triggered. This behavior leads to unintended consequences due to the component's z-index:\r\n\r\nThe notification component occupies part of the screen unnecessarily.\r\nIt overlaps other elements on the page due to its z-index, potentially disrupting the user interface.\r\n\r\n## Expected Behavior\r\nThe notification component should only be created and added to the DOM when a toast is actually triggered.\r\n\r\n## Current Behavior\r\nThe notification component is always present in the DOM, regardless of whether a toast has been triggered or not.\r\n\r\n## Steps to Reproduce\r\n\r\n- Implement the Nuxt UI notification component in a project.\r\n- Inspect the DOM without triggering any toasts.\r\n- Observe that the notification component is present and has a z-index applied.\r\n\r\n## Additional Context\r\nThis issue affects the usability and performance of applications using the Nuxt UI notification component. Resolving it would improve both the user experience and the overall efficiency of the component.\r\n\r\n## Possible Solution\r\nConsider implementing a conditional rendering approach where the notification component is only added to the DOM when it's actually needed (i.e., when a toast is triggered).\r\n\u003Cimg width=\"1427\" alt=\"Screenshot 2024-09-04 at 6 29 00 PM\" src=\"https://github.com/user-attachments/assets/da90352f-71e6-4aaf-9bda-7a9e4a3fd056\">\r\n\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[3225],{"name":3205,"color":3206},2113,"ui","Notification component created even when toast is not triggered, causing z-index issues","2024-11-09T10:24:37Z","https://github.com/nuxt/ui/issues/2113",0.70707965,{"description":3233,"labels":3234,"number":3238,"owner":3152,"repository":3152,"state":3174,"title":3239,"updated_at":3240,"url":3241,"score":3242},"\r\n\u003Cimg width=\"638\" alt=\"image\" src=\"https://user-images.githubusercontent.com/24729021/190970189-faafbb0d-45f3-4836-9bb2-0d3ca0b518e5.png\">\r\n",[3235],{"name":3236,"color":3237},"3.x","29bc7f",14959,"500 [vite-node] [plugin:vite:import-analysis] ./node_modules/nuxt/dist/app/entry.mjs","2023-01-19T17:43:07Z","https://github.com/nuxt/nuxt/issues/14959",0.7077495,{"description":3143,"labels":3244,"number":3247,"owner":3152,"repository":3248,"state":3174,"title":3154,"updated_at":3249,"url":3250,"score":3251},[3245],{"name":3149,"color":3246},"9F4F33",996,"cli","2025-08-09T15:11:25Z","https://github.com/nuxt/cli/issues/996",0.71481603,["Reactive",3253],{},["Set"],["ShallowReactive",3256],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$feLJN9cfGyj9o-iR8no27nIOswdIQ0cAHarnGolzlgA0":-1},"/nuxt/fonts/5"]