",[],1885,"nuxt.com","[Nuxt Website]: \u003Cno response> Failed to fetch","2025-05-03T08:24:49Z","https://github.com/nuxt/nuxt.com/issues/1885",0.7324491,{"description":2889,"labels":2898,"number":2899,"owner":2870,"repository":2870,"state":2872,"title":2893,"updated_at":2900,"url":2901,"score":2896},[],31986,"2025-05-03T06:58:04Z","https://github.com/nuxt/nuxt/issues/31986",{"description":2903,"labels":2904,"number":1027,"owner":2870,"repository":2871,"state":2909,"title":2910,"updated_at":2911,"url":2912,"score":2913},"https://developers.cloudflare.com/speed/optimization/content/fonts/",[2905,2906],{"name":2868,"color":2869},{"name":2907,"color":2908},"provider","1161A4","closed","cloudflare font provider","2024-02-29T10:14:09Z","https://github.com/nuxt/fonts/issues/21",0.6757602,{"description":2915,"labels":2916,"number":1042,"owner":2870,"repository":2871,"state":2909,"title":2920,"updated_at":2921,"url":2922,"score":2923},"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",[2917],{"name":2918,"color":2919},"bug","d73a4a","Local fonts with multiple weights but same name","2024-03-23T16:55:32Z","https://github.com/nuxt/fonts/issues/22",0.6947772,{"description":2925,"labels":2926,"number":2928,"owner":2870,"repository":2871,"state":2909,"title":2929,"updated_at":2930,"url":2931,"score":2932},"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",[2927],{"name":2868,"color":2869},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.7061538,{"description":2934,"labels":2935,"number":1229,"owner":2870,"repository":2871,"state":2909,"title":2939,"updated_at":2940,"url":2941,"score":2942},"```[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```",[2936],{"name":2937,"color":2938},"documentation","0075ca","initial documentation","2024-02-22T14:31:41Z","https://github.com/nuxt/fonts/issues/6",0.7093923,{"description":2944,"labels":2945,"number":2946,"owner":2870,"repository":2947,"state":2909,"title":2948,"updated_at":2949,"url":2950,"score":2951},"I am using nuxt/icon as part of nuxt/ui (v3 alpha), and I am getting constant warnings about failing to load icons:\n```\n[Icon] failed to load icon `lucide:refresh-cw`\n```\nThis is coming up in my console 8+ times for a single page load, for example. I'm also facing an issue where upon using a new icon I've never loaded before, it won't load or appear at all, with the same warning occuring. It takes fully restarting the Nuxt app for the icon to then appear and become \"loadable\", however I am still facing this warning with the `refresh-cw` icon.\n\nI have the icon collection installed locally and it is detected upon load:\n```bash\nℹ Nuxt Icon server bundle mode is set to local 21:37:28\n✔ Nuxt Icon discovered local-installed 1 collections: lucide 21:37:31\nℹ Nuxt Icon client bundle consist of 8 icons with 1.73KB(uncompressed) in size\n```\nAnd I searched other issues, and have tried the following in my nuxt.config.ts as well to little help:\n```ts\n icon: {\n clientBundle: {\n scan: true,\n sizeLimitKb: 256\n }\n }\n```\nI feel like at this point it's a bug with nuxt/icon, or something is up with nuxt/ui that is causing these issues. Hoping for some help with this or to get it fixed if it is a bug.",[],339,"icon","Constant \"failed to load icon\" warnings even with locally installed collection","2025-02-28T06:56:28Z","https://github.com/nuxt/icon/issues/339",0.7108218,{"description":2953,"labels":2954,"number":1562,"owner":2870,"repository":2871,"state":2909,"title":2956,"updated_at":2957,"url":2958,"score":2959},"would be nice to display information on what fonts that have been detected, and which provider they come from\r\n\r\n",[2955],{"name":2868,"color":2869},"devtools integration/panel","2024-03-10T22:01:35Z","https://github.com/nuxt/fonts/issues/5",0.72017425,["Reactive",2961],{},["Set"],["ShallowReactive",2964],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fh2PFIwDv7hzCS543ww0bZBlqFZ7164do5r2t7CW0o1Y":-1},"/nuxt/fonts/340"]