`, I'm getting the warning\n```\n[Icon] failed to load icon my-icon:FooBar\n```\n\n`\u003CIcon name=\"my-icon:foo-bar\" />` also fails to load, which is expected as normalize is disabled.\n\nReproduction link: [stackblitz](https://stackblitz.com/edit/github-zgzqz3vo?file=app.vue)\n\nSetup: Nuxt v3.14.1592, nuxt-icon v1.10.1.",[],322,"new custom collection option `normalizeIconName: false` does not work as expected","2024-12-16T07:04:54Z","https://github.com/nuxt/icon/issues/322",0.7305693,{"description":2966,"labels":2967,"number":2974,"owner":2907,"repository":2907,"state":2934,"title":2975,"updated_at":2976,"url":2977,"score":2978},"### Environment\r\n\r\n------------------------------\r\n- Operating System: Linux\r\n- Node Version: v16.14.2\r\n- Nuxt Version: 3.5.3\r\n- Nitro Version: 2.4.1\r\n- Package Manager: npm@9.4.2\r\n- Builder: vite\r\n- User Config: modules, i18n\r\n- Runtime Modules: @nuxtjs/i18n@8.0.0-beta.12\r\n- Build Modules: -\r\n------------------------------\r\n\r\n### Reproduction\r\n\r\nhttps://stackblitz.com/edit/github-nmhzwq-lxngab?file=pages%2Findex.vue\r\n\r\n### Describe the bug\r\n\r\nSwitching locale in `/error.vue` updates the text inside of `\u003Ctemplate>`, but does not update the title with `useSeoMeta()` if `useFetch()`/`useAsyncData()` inside the `/pages/index.vue` page are used asynchronously.\r\n\r\n### Additional context\r\n\r\nCan see the title of the website not changing by clicking on \"Open in New Tab\" on StackBlitz and clicking on locale links while using `await useAsyncData` or `await useFetch` in `/pages/index.vue`. \r\n\r\n### Logs\r\n\r\n_No response_",[2968,2971],{"name":2969,"color":2970},"3.x","29bc7f",{"name":2972,"color":2973},"🔨 p3-minor","FBCA04",21677,"error.vue useSeoMeta with i18n is missing reactivity","2023-09-01T14:00:38Z","https://github.com/nuxt/nuxt/issues/21677",0.7379573,{"description":2980,"labels":2981,"number":2985,"owner":2907,"repository":2907,"state":2934,"title":2986,"updated_at":2987,"url":2988,"score":2989},"I'm using the vue-i18n plugin to translate page titles. The locale is set in a Vuex store by a middleware. I then have a `plugins/i18n.js` file that retrieves the locale from the store and passes it to i18n, which is then registered with Vue.\r\n\r\nWhen translating page contents, eveything works and the locale in the store is used. For anything in the `head()` function (such as the page title) however, the fallback locale is used, as the locale in the store appears to be undefined the moment the `head()` function is executed.\r\n\r\nIs there a way to circumvent this? I can provide code if needed. Sorry for asking this here. I've tried Stackoverflow, but questions like this seem to be too specific to get any answers.\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/c1671\">#c1671\u003C/a>)\u003C/em>\u003C/sub>\u003C/div>",[2982],{"name":2983,"color":2984},"2.x","d4c5f9",1858,"When/how is the head() function computed?","2023-01-18T15:42:46Z","https://github.com/nuxt/nuxt/issues/1858",0.74124223,{"description":2991,"labels":2992,"number":2994,"owner":2907,"repository":2907,"state":2934,"title":2995,"updated_at":2996,"url":2997,"score":2998},"As mentioned in the i18n example https://github.com/nuxt/nuxt.js/blob/master/examples/i18n/middleware/i18n.js\r\n\r\n```\r\n...\r\nconst locale = params.lang || 'en'\r\n...\r\n```\r\nSo the lang is in url params like `http://xxxx/en/xxxxxx`\r\n\r\nBut I think the lang should be identified from the client browser, not as a param.\r\n\r\nSo I change this to:\r\n```\r\nconst locale = (window.navigator.language || window.navigator.browserLanguage).toLowerCase() || 'en'\r\n```\r\nBut I got error `window is not defiend`, because this code is run in server.\r\n\r\nSo what should I do to get the lang from user's client? thanks!\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://nuxtjs.cmty.io\">Nuxt.js\u003C/a> community (\u003Ca href=\"https://nuxtjs.cmty.io/nuxt/nuxt.js/issues/c601\">#c601\u003C/a>)\u003C/em>\u003C/sub>\u003C/div>",[2993],{"name":2983,"color":2984},707,"i18n should not be like this?","2023-01-18T15:39:41Z","https://github.com/nuxt/nuxt/issues/707",0.75065637,{"description":3000,"labels":3001,"number":3004,"owner":2907,"repository":2924,"state":2934,"title":3005,"updated_at":3006,"url":3007,"score":3008},"### Environment\n\nOperating System: Windows_NT\nNode Version: v20.18.0\nNuxt Version: -\nCLI Version: 3.14.0\nNitro Version: -\nPackage Manager: unknown\nBuilder: -\nUser Config: -\nRuntime Modules: -\nBuild Modules: -\n\n### Version\n\nv3.0.0-alpha.6\n\n### Reproduction\n\nCannot use v3 on stackblitz so no repo.\n\n### Description\n\nThere is no code example for the `validate-on` prop. Like how do I stop blur,input and change validations?\nhttps://ui3.nuxt.dev/components/form#input-events\n\nSearched a bit on docs github repository code and I think it is something like this:\n```\n :validate-on=\"[]\" // No validation until manual trigger: 'validate' prop\n :validate-on=\"['blur']\" // Only validate on blur(or manually)\n :validate-on=\"['blur','change','input']\" // Validate on all\n```\n\nWhen you type :validate-on=\"[]\" it suggests but I didn't know if i had to put `[]`\n\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[3002,3003],{"name":2904,"color":2905},{"name":2921,"color":2922},2371,"[Form] Input events validate-on code example missing.","2024-10-23T20:25:52Z","https://github.com/nuxt/ui/issues/2371",0.7578122,{"description":3010,"labels":3011,"number":3016,"owner":2907,"repository":2924,"state":2934,"title":3017,"updated_at":3018,"url":3019,"score":3020},"### Description\n\nPlease how do i create an overlay with id so i can close or open it anywhere on my app",[3012,3015],{"name":3013,"color":3014},"question","d876e3",{"name":2921,"color":2922},3805,"how to create overlay with id","2025-04-09T15:26:14Z","https://github.com/nuxt/ui/issues/3805",0.75849426,["Reactive",3022],{},["Set"],["ShallowReactive",3025],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fyEFjuYyIfPHifyTLRV5dxlmmFod4s7SIB11vJGIhmnQ":-1},"/nuxt/nuxt.com/1313"]