",[3139,3142],{"name":3140,"color":3141},"pending triage","E99695",{"name":3143,"color":3144},"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.7518577,{"description":3153,"labels":3154,"number":3155,"owner":3146,"repository":3156,"state":3147,"title":3157,"updated_at":3158,"url":3159,"score":3160},"Calling `nuxt build` I can see this output:\n\n```\n[@nuxt/fonts] ℹ Downloading fonts...\" at some time\n[@nuxt/fonts] ├─ https://fonts.bunny.net/noto-sans/files/noto-sans-greek-400-italic.woff2\n[@nuxt/fonts] ├─ https://fonts.bunny.net/noto-sans/files/noto-sans-greek-400-italic.woff\n...\n[@nuxt/fonts] ├─ https://fonts.bunny.net/noto-sans/files/noto-sans-cyrillic-ext-400-italic.woff\n[@nuxt/fonts] ├─ https://fonts.bunny.net/noto-sans/files/noto-sans-greek-400-normal.woff2\n[@nuxt/fonts] ├─ https://fonts.bunny.net/noto-sans/files/noto-sans-greek-400-normal.woff\n[@nuxt/fonts] ├─ https://fonts.bunny.net/noto-sans/files/noto-sans-latin-400-normal.woff2\n[@nuxt/fonts] ├─ https://fonts.bunny.net/noto-sans/files/noto-sans-latin-400-normal.woff\n[@nuxt/fonts] ├─ https://fonts.bunny.net/noto-sans/files/noto-sans-cyrillic-400-normal.woff2\n[@nuxt/fonts] ├─ https://fonts.bunny.net/noto-sans/files/noto-sans-cyrillic-400-normal.woff\n[@nuxt/fonts] ├─ https://fonts.bunny.net/noto-sans/files/noto-sans-greek-ext-400-normal.woff2\n[@nuxt/fonts] ├─ https://fonts.bunny.net/noto-sans/files/noto-sans-greek-ext-400-normal.woff\n[@nuxt/fonts] ├─ https://fonts.bunny.net/noto-sans/files/noto-sans-latin-ext-400-normal.woff2\n[@nuxt/fonts] ├─ https://fonts.bunny.net/noto-sans/files/noto-sans-latin-ext-400-normal.woff\n[@nuxt/fonts] ├─ https://fonts.bunny.net/noto-sans/files/noto-sans-devanagari-400-normal.woff2\n[@nuxt/fonts] ├─ https://fonts.bunny.net/noto-sans/files/noto-sans-devanagari-400-normal.woff\n[@nuxt/fonts] ├─ https://fonts.bunny.net/noto-sans/files/noto-sans-vietnamese-400-normal.woff2\n[@nuxt/fonts] ├─ https://fonts.bunny.net/noto-sans/files/noto-sans-vietnamese-400-normal.woff\n[@nuxt/fonts] ├─ https://fonts.bunny.net/noto-sans/files/noto-sans-cyrillic-ext-400-normal.woff2\n[@nuxt/fonts] ├─ https://fonts.bunny.net/noto-sans/files/noto-sans-cyrillic-ext-400-normal.woff\n``` \nI wonder why all subsets are download despite of I have limited the subsets to latin like this (nuxt.config.ts):\n\n```\nexport default defineNuxtConfig({\n ...\n fonts: {\n families: [{ name: \"Noto Sans\", provider: \"bunny\", subsets: [\"latin\", \"latin-ext\"] }],\n },\n```\nusing:\n- @nuxt/fonts@0.11.3\n- nuxt@3.17.0\n",[],660,"fonts","font subsets seam not be considered when downloading fonts at build time","2025-07-10T09:07:55Z","https://github.com/nuxt/fonts/issues/660",0.75440115,{"description":3162,"labels":3163,"number":1510,"owner":3146,"repository":3164,"state":3147,"title":3165,"updated_at":3166,"url":3167,"score":3168},"Consider following code for your app:\r\n```vue\r\n\u003Cstyle>\r\n.loading {\r\n font-size: 2rem;\r\n}\r\n\u003C/style>\r\n\r\n\u003Ctemplate>\r\n \u003CClientOnly>\r\n \u003Ctemplate #fallback>\r\n \u003Cdiv class=\"loading\">\r\n \u003CIcon name=\"svg-spinners:ring-resize\" />\r\n Loading\r\n \u003C/div>\r\n \u003C/template>\r\n \u003Cdiv class=\"content\" ref=\"someRef\">\r\n This text should NOT be large!\r\n Remove the \u003Cpre>ref=\"someRef\"\u003C/pre> from the parent and it works\r\n \u003C/div>\r\n \u003C/ClientOnly>\r\n\u003C/template>\r\n```\r\n\r\n**Expected behaviour when loading the page:**\r\nA big loading spinner, and, when everything is done loading, some normal text, like this:\r\n\r\n\r\n**Instead,** you get this:\r\n\r\n\r\nWhen you remove the `ref=\"someRef\"` from the content div, it works as expected",[],"icon","Unexpected behaviour when using an Icon within ClientOnly fallback","2023-12-18T12:08:48Z","https://github.com/nuxt/icon/issues/129",0.7614361,{"description":3170,"labels":3171,"number":3178,"owner":3146,"repository":3146,"state":3179,"title":3180,"updated_at":3181,"url":3182,"score":3183},"Hey there,\r\n\r\nI wanted to add a `link` tag with `rel=\"preload\"` for two fonts that I am using, so that the priority in which they are loaded is higher (especially when coming from a ServiceWorker, since they are currently prioritized as **lowest** — which slows down things).\r\n\r\nI added this to my `nuxt.config.js` inside the `link` array, where all other `link`s are:\r\n\r\n```\r\n{\r\n rel: 'preload',\r\n as: 'font',\r\n crossorigin: 'crossorigin',\r\n type: 'font/woff2',\r\n href: 'fonts/ApercuPro.woff2'\r\n}\r\n```\r\n\r\nThe problem I am experiencing is that the preloaded font is now being loaded **twice**, once the hashed version, the other time the raw, original one as can be seen here:\r\n\r\n\r\n\r\nIdeally, only the hashed version of the file should be referenced inside `href`, just like Nuxt already does this with all other references to that particular file (e.g. `url(/_nuxt/fonts/ApercuPro.5398148.woff2)` inside `style`).\r\n\r\nSorry if I am missing something here and thank you for your feedback in advance. :) Been [a happy user](https://twitter.com/mixn/status/899601973946847232) for a while now. ❤️ Also glad to help in any way, if I can!\n\n\u003C!--cmty-->\u003C!--cmty_prevent_hook-->\n\u003Cdiv align=\"right\">\u003Csub>\u003Cem>This bug report is available on \u003Ca href=\"https://nuxtjs.cmty.io\">Nuxt.js\u003C/a> community (\u003Ca href=\"https://nuxtjs.cmty.io/nuxt/nuxt.js/issues/c1343\">#c1343\u003C/a>)\u003C/em>\u003C/sub>\u003C/div>",[3172,3175],{"name":3173,"color":3174},"available soon","6de8b0",{"name":3176,"color":3177},"2.x","d4c5f9",1508,"closed","Preloading hashed, static assets with rel=\"preload\"","2023-01-18T15:41:52Z","https://github.com/nuxt/nuxt/issues/1508",0.7120949,{"description":3185,"labels":3186,"number":3188,"owner":3146,"repository":3146,"state":3179,"title":3189,"updated_at":3190,"url":3191,"score":3192},"There might be a solution for this, but I have looked through all the issues and could not find mention of this particular issue (though https://github.com/nuxt/nuxt.js/issues/872 might be relevant).\r\n\r\nIn my `assets/styles/global.scss` file I reference fonts stored at `assets/fonts/keiser`.\r\n```\r\n@font-face {\r\n font-family: \"Keiser\";\r\n src: url(\"~assets/fonts/keiser/keiser-webfont.eot\");\r\n src: url(\"~assets/fonts/keiser/keiser-webfont.eot\") format(\"embedded-opentype\"), \r\n url(\"~assets/fonts/keiser/keiser-webfont.woff\") format(\"woff\"), \r\n url(\"~assets/fonts/keiser/keiser-webfont.ttf\") format(\"truetype\");\r\n font-weight: normal;\r\n font-style: normal;\r\n}\r\n```\r\nWhich then results in this error:\r\n```\r\n error in ./assets/fonts/keiser/keiser-webfont.woff\r\n\r\nModule parse failed: D:\\Development\\Keiser\\Keiser.Metrics\\Keiser.Metrics.Web\\assets\\fonts\\keiser\\keiser-webfont.woff Unexpected character ' ' (1:8)\r\nYou may need an appropriate loader to handle this file type.\r\n(Source code omitted for this binary file)\r\n\r\n @ ./~/css-loader?sourceMap!./~/sass-loader/lib/loader.js?sourceMap!./assets/styles/global.scss 6:281-331\r\n @ ./assets/styles/global.scss\r\n @ ./~/babel-loader/lib?{\"presets\":[\"vue-app\"],\"babelrc\":false,\"cacheDirectory\":true}!./~/vue-loader/lib/selector.js?type=script&index=0!./.nuxt/App.vue\r\n @ ./.nuxt/App.vue\r\n @ ./.nuxt/index.js\r\n @ ./.nuxt/client.js\r\n @ multi webpack-hot-middleware/client?reload=true ./.nuxt/client.js\r\n```\r\nWe would normally use [resolve-url-loader](https://github.com/bholloway/resolve-url-loader) to solve this issue. I see that there are a few ways to override loaders, but none of the ones I tried would work (and most seemed to be ignored for this file). Is there a method for overriding the loader for this file?\n\n\u003C!--cmty-->\u003C!--cmty_prevent_hook-->\n\u003Cdiv align=\"right\">\u003Csub>\u003Cem>This question is available on \u003Ca href=\"https://nuxtjs.cmty.io\">Nuxt.js\u003C/a> community (\u003Ca href=\"https://nuxtjs.cmty.io/nuxt/nuxt.js/issues/c767\">#c767\u003C/a>)\u003C/em>\u003C/sub>\u003C/div>",[3187],{"name":3176,"color":3177},897,"Including fonts in styles","2023-01-18T15:39:56Z","https://github.com/nuxt/nuxt/issues/897",0.714715,{"description":3194,"labels":3195,"number":3207,"owner":3146,"repository":3208,"state":3179,"title":3209,"updated_at":3210,"url":3211,"score":3212},"### Description\n\nThe project reported an error but can run, but each change must wait for the network timeout to run properly\n\n\n\nMy browser works fine\n\n",[3196,3199,3201,3204],{"name":3197,"color":3198},"question","d876e3",{"name":3143,"color":3200},"CB47CF",{"name":3202,"color":3203},"v3","49DCB8",{"name":3205,"color":3206},"closed-by-bot","ededed",3803,"ui","How do I manually download fonts and put them in what directory for my project?","2025-05-22T02:10:15Z","https://github.com/nuxt/ui/issues/3803",0.72445905,{"description":3214,"labels":3215,"number":3218,"owner":3146,"repository":3146,"state":3179,"title":3219,"updated_at":3220,"url":3221,"score":3222},"Hi,\r\nI have a code:\r\n```\r\n@font-face {\r\n font-family: icomoon;\r\n src: url('/fonts/icomoon/icomoon.woff2') format('woff2');\r\n\r\n font-weight: normal;\r\n font-style: normal;\r\n}\r\n```\r\n\r\nAfter I updated Nuxt from 0.10.6 to rc5 I got an error:(before update it works)\r\n```\r\n in ./node_modules/css-loader?{\"minimize\":true,\"importLoaders\":1,\"sourceMap\":true,\"root\":\"~\",\"alias\":{\"/static\":\"D://Projects//Vue//***//src//static\",\"/assets\":\"D://Projects//Vue//***//src//assets\"}}!./node_modules/postcss-loader/lib?{\"sourceMap\":true,\"plugins\":[null,null,{\"version\":\"6.0.9\",\"plugins\":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],\"postcssPlugin\":\"postcss-cssnext\",\"postcssVersion\":\"6.0.9\"}]}!./node_modules/sass-loader/lib/loader.js?{\"sourceMap\":true}!./src/css/main.scss\r\nModule not found: Error: Can't resolve 'fonts/icomoon/icomoon.woff2' in 'D:\\Projects\\Vue\\Smart Landing\\smart-landing-client\\src\\css'\r\n @ ./node_modules/css-loader?{\"minimize\":true,\"importLoaders\":1,\"sourceMap\":true,\"root\":\"~\",\"alias\":{\"/static\":\"D://Projects//Vue//***//src//static\",\"/assets\":\"D://Projects//Vue//***//src//assets\"}}!./node_modules/postcss-loader/lib?{\"sourceMap\":true,\"plugins\":[null,null,{\"version\":\"6.0.9\",\"plugins\":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],\"postcssPlugin\":\"postcss-cssnext\",\"postcssVersion\":\"6.0.9\"}]}!./node_modules/sass-loader/lib/loader.js?{\"sourceMap\":true}!./src/css/main.scss 6:140737-140775\r\n @ ./src/css/main.scss\r\n @ ./node_modules/babel-loader/lib?{\"presets\":[\"vue-app\",\"stage-0\",\"es2015\"],\"plugins\":[\"transform-decorators-legacy\",\"transform-class-properties\"],\"babelrc\":false,\"cacheDirectory\":true}!./node_modules/vue-loader/lib/selector.js?type=script&index=0!./.nuxt/App.vue\r\n @ ./.nuxt/App.vue\r\n @ ./.nuxt/index.js\r\n @ ./.nuxt/client.js\r\n @ multi webpack-hot-middleware/client?name=client&reload=true ./.nuxt/client.js\r\n```\r\n\r\n\n\n\u003C!--cmty-->\u003C!--cmty_prevent_hook-->\n\u003Cdiv align=\"right\">\u003Csub>\u003Cem>This bug report is available on \u003Ca href=\"https://nuxtjs.cmty.io\">Nuxt.js\u003C/a> community (\u003Ca href=\"https://nuxtjs.cmty.io/nuxt/nuxt.js/issues/c1277\">#c1277\u003C/a>)\u003C/em>\u003C/sub>\u003C/div>",[3216,3217],{"name":3173,"color":3174},{"name":3176,"color":3177},1435,"[css-loader] Problem with static files","2023-01-18T15:41:50Z","https://github.com/nuxt/nuxt/issues/1435",0.72638875,{"description":3224,"labels":3225,"number":3229,"owner":3146,"repository":3156,"state":3179,"title":3230,"updated_at":3231,"url":3232,"score":3233},"Coming from #443.\n\n- [x] Return font file priority from `unifont`.\n- [ ] In Nuxt Fonts, skip preloading based on the priority.",[3226],{"name":3227,"color":3228},"good first issue","7057ff",508,"Should not preload fallback fonts","2025-05-09T11:54:48Z","https://github.com/nuxt/fonts/issues/508",0.73239934,{"description":3235,"labels":3236,"number":3239,"owner":3146,"repository":3146,"state":3179,"title":3240,"updated_at":3241,"url":3242,"score":3243},"### Version\n\n[v2.4.3](https://github.com/nuxt.js/releases/tag/v2.4.3)\n\n### Reproduction link\n\n[https://user-images.githubusercontent.com/4768095/52838878-ba8f9100-3126-11e9-9dea-8c6f2d98bf1d.png](https://user-images.githubusercontent.com/4768095/52838878-ba8f9100-3126-11e9-9dea-8c6f2d98bf1d.png)\n\n### Steps to reproduce\n\nHi guys,\n\nI'm using ElementUI and [custom-theme](https://element.eleme.io/#/en-US/component/custom-theme)\n\nBut I saw error with file font.\n\n\n\n\u003C!--cmty-->\u003C!--cmty_prevent_hook-->\n\u003Cdiv align=\"right\">\u003Csub>\u003Cem>This bug report is available on \u003Ca href=\"https://cmty.app/nuxt\">Nuxt\u003C/a> community (\u003Ca href=\"https://cmty.app/nuxt/nuxt.js/issues/c8666\">#c8666\u003C/a>)\u003C/em>\u003C/sub>\u003C/div>",[3237,3238],{"name":3140,"color":3141},{"name":3176,"color":3177},5042,"Nuxt 2 - Can not load font (.woff) file","2023-01-22T15:33:01Z","https://github.com/nuxt/nuxt/issues/5042",0.73935837,{"description":3245,"labels":3246,"number":3248,"owner":3146,"repository":3146,"state":3179,"title":3249,"updated_at":3250,"url":3251,"score":3252},"# Using hightlight code error\r\n\r\n\r\n## test.md\r\n\r\n\r\n## nuxt.config.js\r\n\r\n\r\n\n\n\u003C!--cmty-->\u003C!--cmty_prevent_hook-->\n\u003Cdiv align=\"right\">\u003Csub>\u003Cem>This question is available on \u003Ca href=\"https://cmty.app/nuxt\">Nuxt\u003C/a> community (\u003Ca href=\"https://cmty.app/nuxt/nuxt.js/issues/c7210\">#c7210\u003C/a>)\u003C/em>\u003C/sub>\u003C/div>",[3247],{"name":3176,"color":3177},3420,"highlight-loader Unknown language","2023-01-18T16:24:02Z","https://github.com/nuxt/nuxt/issues/3420",0.7460169,["Reactive",3254],{},["Set"],["ShallowReactive",3257],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fPOBXSx3mjRkA6C-BKWXBZY1QL5RM22T0Hdh9__iHklA":-1},"/nuxt/fonts/619"]