` component has not been used.`\r\n\r\nthis is also in the same stackblitz. Layout works fine.\r\nExplain me please is this way to do layouts is worng and i have to use App.vue ?\n\n### Logs\n\n_No response_",[2024,2027],{"name":2025,"color":2026},"3.x","29bc7f",{"name":2028,"color":2029},"pending triage","E99695",25005,"Href use svg symbol","2024-01-02T14:01:38Z","https://github.com/nuxt/nuxt/issues/25005",0.7129114,{"description":2036,"labels":2037,"number":2040,"owner":1985,"repository":1985,"state":2007,"title":2041,"updated_at":2042,"url":2043,"score":2044},"### Version\n\n[v1.4.2](https://github.com/nuxt.js/releases/tag/v1.4.2)\n\n### Reproduction link\n\n[https://github.com/agrajak/nuxt_text_recruit](https://github.com/agrajak/nuxt_text_recruit)\n\n### Steps to reproduce\n\nnuxt generate.\nmy static website is hosted in https://agrajak-8d93e.firebaseapp.com/\n\n\n### What is expected ?\n\nIn pages/index.vue, When I see my site with Chrome Developer Tools, Every \u003Cfont-awesome-icon> should be rendered to \u003Csvg ~~~> \n\n\n\n\n\n### What is actually happening?\n\nsome of \u003Cfont-awesome-icon> are rendered to \u003Csvg ~>(in .sticky-nav, you can see it when you scroll down) \nand the others are still rendered to \u003Cfont-awesome-icon> and also show nothing. (in top component)\n\n\n\n\n\n\n### Additional comments?\n\nSite works pretty well in nuxt start.\nI also checked turning off SSR options in nuxt.config.js\n\n {src: '~plugins/fullpage', ssr: false}\nand font-awesome librarys are declared in plugins/fullpage.js\n\nIf this issue is not a bug, just let me know how to fix it.\nthank you.\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/c7640\">#c7640\u003C/a>)\u003C/em>\u003C/sub>\u003C/div>",[2038,2039],{"name":2028,"color":2029},{"name":2004,"color":2005},3808,"nuxt generate doesn't render every components","2023-01-22T15:30:05Z","https://github.com/nuxt/nuxt/issues/3808",0.71902066,{"description":2046,"labels":2047,"number":2048,"owner":1985,"repository":1986,"state":2007,"title":2049,"updated_at":2050,"url":2051,"score":2052},"Nuxt version: 3.4.2\r\nnuxt-icon version: 0.4.0\r\nPackage manager: pnpm\r\n\r\nI'm working on a brand new nuxt project today. I just installed nuxt-icon@0.4.0, and I started getting type errors like this in my app.config.ts:\r\n\r\n\r\n\r\nRemoving nuxt-icon from my nuxt modules resolves this. Seems nuxt-icon is breaking dynamic types?\r\n\r\nNot sure if this could be related to: https://github.com/nuxt/nuxt/pull/20440 ?\r\n\r\n\r\n",[],72,"nuxt-icon breaks type extension of AppConfigInput?","2023-04-26T14:38:10Z","https://github.com/nuxt/icon/issues/72",0.72644734,{"description":2054,"labels":2055,"number":2048,"owner":1985,"repository":2056,"state":2007,"title":2057,"updated_at":2058,"url":2059,"score":2052},"Still getting the following type-errors when `@nuxt/scripts` is enabled, even though I don't use these scripts explicitly.\r\n\r\n\u003Cimg width=\"961\" alt=\"Bildschirmfoto 2024-05-24 um 11 09 46\" src=\"https://github.com/nuxt/scripts/assets/118112813/6c900c80-6f7c-4ebf-9e83-5e2ca887ad0e\">\r\n",[],"scripts","`vue-tsc` should pass without errors ","2024-05-25T02:57:29Z","https://github.com/nuxt/scripts/issues/72",{"description":2061,"labels":2062,"number":2064,"owner":1985,"repository":1985,"state":2007,"title":2065,"updated_at":2066,"url":2067,"score":2068},"I know this has been asked before but no matter what I try I can't seem to make it work. \r\nI want to use a component that will render my svg icons inline.\r\n\r\nThis is my nuxt.config.js\r\n```\r\nbuild: {\r\n /*\r\n ** Run ESLINT on save\r\n */\r\n extend (config, ctx) {\r\n if (ctx.isClient) {\r\n config.module.rules.push({\r\n enforce: 'pre',\r\n test: /\\.(js|vue)$/,\r\n loader: 'eslint-loader',\r\n exclude: /(node_modules)/\r\n },\r\n {\r\n test: /\\.svg$/,\r\n include: /assets\\/svg/,\r\n use: [\r\n {\r\n loader: 'svg-inline-loader'\r\n }\r\n ]\r\n },\r\n {\r\n test: /\\.(png|jpe?g|gif)$/,\r\n loader: 'url-loader',\r\n exclude: /assets\\/svg/,\r\n query: {\r\n limit: 1000, // 1KO\r\n name: 'img/[name].[hash:7].[ext]'\r\n }\r\n })\r\n }\r\n },\r\n }\r\n```\r\n\r\nand this is my component: \r\n\r\n```\r\n\u003Ctemplate>\r\n \u003Cdiv>\r\n \u003Cspan :class=\"'icon-' + name\" class=\"icon\" v-html=\"url\">\u003C/span>\r\n \u003C/div>\r\n\u003C/template>\r\n\r\n\u003Cscript>\r\n export default {\r\n props: ['name'],\r\n computed: {\r\n url () {\r\n return require(`~/assets/svg/${this.name}.svg`)\r\n }\r\n }\r\n }\r\n\u003C/script>\r\n```\r\nAnd this is what gets rendered:\r\n\u003Cimg width=\"452\" alt=\"screenshot 2017-08-07 21 15 42\" src=\"https://user-images.githubusercontent.com/5978397/29042046-a2b7b058-7bb5-11e7-9ba9-e0d33b5e7016.png\">\r\n\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://nuxtjs.cmty.io\">Nuxt.js\u003C/a> community (\u003Ca href=\"https://nuxtjs.cmty.io/nuxt/nuxt.js/issues/c1165\">#c1165\u003C/a>)\u003C/em>\u003C/sub>\u003C/div>",[2063],{"name":2004,"color":2005},1315,"Can't make svg-inline-loader work","2023-01-18T15:41:02Z","https://github.com/nuxt/nuxt/issues/1315",0.7269018,{"description":2070,"labels":2071,"number":2074,"owner":1985,"repository":1985,"state":2007,"title":2075,"updated_at":2042,"url":2076,"score":2077},"### Version\n\n[v1.4.2](https://github.com/nuxt.js/releases/tag/v1.4.2)\n\n### Reproduction link\n\n[https://github.com/FistMeNaruto/vue-svg-loader-test](https://github.com/FistMeNaruto/vue-svg-loader-test)\n\n### Steps to reproduce\n\nDo everything described in https://vue-svg-loader.js.org/ documentation.\n\n### What is expected ?\n\nSVG of a circle on the homepage\n\n### What is actually happening?\n\nSVG gets converted to base64 even though svg files should not be processed by the url loader anymore.\n\n### Additional comments?\n\nIssue on vue-svg-loader repo: visualfanatic/vue-svg-loader#41\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/c7599\">#c7599\u003C/a>)\u003C/em>\u003C/sub>\u003C/div>",[2072,2073],{"name":2028,"color":2029},{"name":2004,"color":2005},3763,"Vue-svg-loader not working with Nuxt","https://github.com/nuxt/nuxt/issues/3763",0.7278437,["Reactive",2079],{},["Set"],["ShallowReactive",2082],{"TRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"B_-DvW83LR4CeaPEKpzc6FEz8Zmf16svzkefYZvAxY8":-1},"/nuxt/icon/106"]