\n\n\u003Cimg width=\"2032\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/c1d39d3f-9330-4896-896e-d6d381279876\" />\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[3151],{"name":3152,"color":3153},"pending triage","E99695",32412,"nuxt","open","docs (nuxt 4.x): video from Vue School is not playable","2025-06-16T14:45:59Z","https://github.com/nuxt/nuxt/issues/32412",0.6938225,{"description":3162,"labels":3163,"number":3164,"owner":3155,"repository":3165,"state":3156,"title":3166,"updated_at":3167,"url":3168,"score":3169},"### Environment\n\nNuxt docs website\n\n### Reproduction\n\n1. Go to https://nuxt.com/docs/3.x/getting-started/configuration\n2. Click \"Every option is described in the Configuration Reference.\"\n\n### Describe the bug\n\nThe link leads to old URL https://nuxt.com/docs/api/nuxt-config\n\nThis now automatically re-directs to v4 variant https://nuxt.com/docs/4.x/api/nuxt-config\n\nBut I need v3 reference. So I switch to Version 3 in the top left corner combo box. And I got a blank page:\n\n\u003Cimg width=\"914\" height=\"390\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/c1af2cf5-632d-456c-8127-16aa04fe2ad7\" />\n\n### Additional context\n\nVisiting the link directly in browser has same effect https://nuxt.com/docs/3.x/api/nuxt-config\n\n### Logs\n\n```shell-script\n\n```",[],1986,"nuxt.com","Docs link to `nuxt.config.ts` reference broken for v3","2025-07-21T20:09:10Z","https://github.com/nuxt/nuxt.com/issues/1986",0.70432794,{"description":3171,"labels":3172,"number":3176,"owner":3155,"repository":3177,"state":3156,"title":3178,"updated_at":3179,"url":3180,"score":3181},"### Package\n\nv3.x\n\n### Description\n\nSo I've created a nuxt module npm package to share components / composable, between two applications. One is Nuxt, one is plain Vue. Now i'm using Nuxt UI is some of those components. When installing this module in the Nuxt application the components work fine, but in Vue I'm having trouble getting them recognized.\n\nI've added a \"components\" -> \"dist/runtime/components\" export to the package and I'm directly importing the .vue files in Vue, Nuxt UI is installed in the application. But I'm getting the following:\n\n\u003Cimg width=\"678\" height=\"112\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/3f2dde28-d661-4a3e-b79d-79a9505a1da0\" />\n\nI'm also using UModal, UCard elsewhere in the app itself, they do work there.\nSo what do I need to do to get these files parsed my vite/vue/nuxt ui?",[3173],{"name":3174,"color":3175},"question","d876e3",4892,"ui","Using Nuxt UI in components from a npm package, in Vue","2025-09-05T08:48:22Z","https://github.com/nuxt/ui/issues/4892",0.7075861,{"description":3183,"labels":3184,"number":3189,"owner":3155,"repository":3155,"state":3190,"title":3191,"updated_at":3192,"url":3193,"score":3194},"### Environment\n\n- Operating System: Windows_NT\r\n- Node Version: v16.19.0\r\n- Nuxt Version: 3.5.1\r\n- Nitro Version: 2.4.1\r\n- Package Manager: yarn@1.22.19\r\n- Builder: vite\r\n- User Config: app, runtimeConfig, vite, css, modules, vuefire\r\n- Runtime Modules: @open-xamu-co/vue-component-system/nuxt@0.0.1, nuxt-vuefire@0.1.6\r\n- Build Modules: -\n\n### Reproduction\n\nThe monorepo for the packages I'm building depends as well on some other unpublished packages so to reproduce the issue you would have to run the locally.\r\n\r\nTo minimize the effort just clone https://github.com/xamu-co/components and create a npm link at the path \"packages/vue\"\r\n\r\nThen create a brand new nuxt project and link the package 'npm link @open-xamu-co/vue-component-system'.\r\n\r\nYou could as well use https://gitpkg.vercel.app/ to have it installed.\r\n\r\n```json\r\n{\r\n \"dependencies\": {\r\n \"@open-xamu-co/vue-component-system\": \"https://gitpkg.now.sh/xamu-co/components/packages/vue?dev\"\r\n }\r\n}\r\n```\r\n\r\nCopy the dist folder to the root of the linked package.\r\n[dist.zip](https://github.com/nuxt/nuxt/files/12134996/dist.zip)\r\n\r\nNow you can include the module in nuxt: @open-xamu-co/vue-component-system/nuxt\r\n\r\n```typescript\r\n// https://nuxt.com/docs/api/configuration/nuxt-config\r\nexport default defineNuxtConfig({\r\n modules: [\"@open-xamu-co/vue-component-system/nuxt\"],\r\n})\r\n```\r\n\r\nIf you start nuxt you would get the error.\r\n\r\nIn the other hand if you install the package without linking and copy the dist to \"node_modules/@open-xamu-co/vue-component-system\" and run nuxt you shoudn't have to see any issue.\n\n### Describe the bug\n\nI have a [monorepo ](https://github.com/xamu-co/components) to release some components and a nuxt module to inject them, I'm getting multiple errors when linking this module.\r\n\r\nHere is a longer stack of the error, it repeats for every chunk import:\r\n\r\n```bash\r\n[5:04:22 p. m.] ERROR Failed to load url /@fs/C:/projects/xamu/components/packages/vue/dist/_virtual/chunk_modifier_simple.es.js (resolved id: C:/projects/xamu/components/packages/vue/dist/_virtual/chunk_modifier_simple.es.js) in C:/projects/xamu/components/packages/vue/dist/lib/icon/Fa.vue.mjs. Does the file exist?\r\n```\r\n\r\nWithout \"/@fs/\" the showcased paths are correct within my system.\r\n\r\n### Why I think this is a bug?\r\n\r\nThis is a unpublished package so to emulate the production behavior I had to compile the distributables tothen copy those files directly to the module location on node modules within the nuxt project (no link). After running nuxt it worked just fine. So the issue comes from linked packages path resolution.\r\n\r\n[#20001](https://github.com/nuxt/nuxt/issues/20001) seems related\r\n\r\nThis issue could be related to the way viteFs package resolves urls. Thanks in advance.\n\n### Additional context\n\nHere is the full setup if you need it:\r\n\r\n### Setup commons monorepo\r\n\r\n```bash\r\n# clone the commons monorepo\r\ngit clone https://github.com/xamu-co/common common\r\ncd common\r\n# run the build script\r\nyarn && yarn build\r\n# create links for the packages\r\nyarn workspaces run link # @open-xamu-co/common-enums, @open-xamu-co/common-types, @open-xamu-co/common-helpers\r\n```\r\n\r\n### Setup component monorepo\r\n\r\nthe module comes from here\r\n\r\n```bash\r\n# clone the components monorepo\r\ngit clone https://github.com/xamu-co/components components\r\ncd components\r\n# install the dependencies\r\nyarn\r\n# link the previous packages\r\nyarn link @open-xamu-co/common-enums\r\nyarn link @open-xamu-co/common-types\r\nyarn link @open-xamu-co/common-helpers\r\n# run the build script\r\nyarn build\r\n# create a link for the vue package\r\nyarn p:vue link # @open-xamu-co/vue-component-system\r\n```\r\n\r\n### Use the module on nuxt\r\n\r\non a nuxt3 project install and then link the package @open-xamu-co/vue-component-system\r\n\r\n```bash\r\n# setup a project\r\nnpx nuxi@latest init my-app\r\ncd my-app\r\nyarn\r\n# install the module\r\nyarn add https://gitpkg.now.sh/xamu-co/components/packages/vue?dev\r\n# add @open-xamu-co/vue-component-system/nuxt to your nuxt modules and run nuxt\r\nyarn dev\r\n```\r\nThese are yarn monorepos so yarn classic is required\n\n### Logs\n\n_No response_",[3185,3188],{"name":3186,"color":3187},"3.x","29bc7f",{"name":3152,"color":3153},22278,"closed","Nuxt fails to load urls on linked module","2023-08-26T06:43:23Z","https://github.com/nuxt/nuxt/issues/22278",0.6873328,{"description":3149,"labels":3196,"number":3197,"owner":3155,"repository":3165,"state":3190,"title":3157,"updated_at":3198,"url":3199,"score":3200},[],1937,"2025-06-17T19:02:09Z","https://github.com/nuxt/nuxt.com/issues/1937",0.69004697,{"description":3202,"labels":3203,"number":3204,"owner":3155,"repository":3165,"state":3190,"title":3205,"updated_at":3206,"url":3207,"score":3208},"The link \"Post a job\" on https://nuxt.com/enterprise/jobs leads to a 404.\n\nAssumption where the link should lead:\n\n- https://vuejobs.com/hire-vuejs-developers\n- or https://vuejobs.com/post-a-job\n\n(While doing the PR i also noticed that the page isn't even linked anymore in the useNavigation composable. Will it be removed in the future?)",[],1974,"Broken link to vuejobs on https://nuxt.com/enterprise/jobs","2025-07-20T13:39:17Z","https://github.com/nuxt/nuxt.com/issues/1974",0.6903788,{"description":3210,"labels":3211,"number":3217,"owner":3155,"repository":3155,"state":3190,"title":3218,"updated_at":3219,"url":3220,"score":3221},"Hi, I am trying to get this awesome framework to work with [vue-awesome](https://github.com/Justineo/vue-awesome) but I can't manage to do it.\r\n\r\nI added this to my nuxt.config.js\r\n`build: {\r\n\t\tvendor: ['vue-awesome']\r\n\t}`\r\n\r\nI added this to my default.vue\r\n\r\n`import Icon from \"vue-awesome/components/Icon.vue\"; \r\n\timport \"vue-awesome/icons\"; `\r\n\r\n`\r\n\texport default {\r\n\t\tcomponents: {\r\n\t\t\tIcon\r\n\t\t}\r\n\t}`\r\n\r\nHowever when I put icon components in my pages, it does not show, but is visible in the chrome dev tools.\r\n\r\nIs there a proper way to do this?\r\n\r\nI am new to Nuxt.\r\nThanks for your help.\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/c147\">#c147\u003C/a>)\u003C/em>\u003C/sub>\u003C/div>",[3212,3214],{"name":3174,"color":3213},"cc317c",{"name":3215,"color":3216},"2.x","d4c5f9",174,"Work with vue-awesome","2023-01-18T15:38:32Z","https://github.com/nuxt/nuxt/issues/174",0.6974534,{"description":3223,"labels":3224,"number":3227,"owner":3155,"repository":3155,"state":3190,"title":3228,"updated_at":3229,"url":3230,"score":3231},"### Environment\n\n------------------------------\r\n- Operating System: Linux\r\n- Node Version: v18.18.0\r\n- Nuxt Version: 3.9.0\r\n- CLI Version: 3.10.0\r\n- Nitro Version: 2.8.1\r\n- Package Manager: npm@9.4.2\r\n- Builder: -\r\n- User Config: -\r\n- Runtime Modules: -\r\n- Build Modules: -\r\n------------------------------\n\n### Reproduction\n\n[StackBlitz](https://stackblitz.com/edit/nuxt-examples-7qpsts?file=pages%2Findex.vue) reproduction\n\n### Describe the bug\n\n[Vue Router warn]: No match found for location with path \"/assets/sprite/gen/svg-symbols.svg/\" in console\r\n\r\nUISvgIcon component that draw icon as svg sprite but after update version of nuxt it's broken. it looks like nuxt doesn't recognize this as a link because other files in the root are opening correctly.\r\n\r\nthis worked until the nuxt version 3.8.2\n\n### Additional context\n\nI'm sorry, I have one more question. After update appeared warn: \r\n`[nuxt] Your project has layouts but the `\u003CNuxtLayout />` 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_",[3225,3226],{"name":3186,"color":3187},{"name":3152,"color":3153},25005,"Href use svg symbol","2024-01-02T14:01:38Z","https://github.com/nuxt/nuxt/issues/25005",0.7001264,{"labels":3233,"number":3235,"owner":3155,"repository":3155,"state":3190,"title":3236,"updated_at":3237,"url":3238,"score":3239},[3234],{"name":3186,"color":3187},12063,"Unable to load Global Stylesheets using nuxt.config.ts","2023-01-19T15:54:20Z","https://github.com/nuxt/nuxt/issues/12063",0.7040855,{"description":3241,"labels":3242,"number":3247,"owner":3155,"repository":3155,"state":3190,"title":3248,"updated_at":3249,"url":3250,"score":3251},"### Environment\n\nnone\n\n### Reproduction\n\nhttps://nuxt.com/docs/guide/directory-structure/plugins#vue-directives\r\n\r\n\r\n\n\n### Describe the bug\n\nSame issue as https://github.com/nuxt/nuxt.js/issues/14486, seems it appears again after moving to the new documentation page. (Nuxt Content, maybe?)\r\n\r\nIt should be displayed as the link address or a custom link title, instead of `Https : > Vuejs Org > Guide > Reusability > Custom Directives Html`\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[3243,3246],{"name":3244,"color":3245},"documentation","5319e7",{"name":3186,"color":3187},15748,"External link is displayed as internal link","2023-02-13T13:34:07Z","https://github.com/nuxt/nuxt/issues/15748",0.70440644,["Reactive",3253],{},["Set"],["ShallowReactive",3256],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fpBLtDqrzW6-yPsB8D027uu3J1nPFhJh7k1MPhweFeOE":-1},"/nuxt/icon/73"]