\n \u003C/template>\n \u003CUButton\n label=\"Open\"\n color=\"neutral\"\n variant=\"subtle\"\n trailing-icon=\"i-lucide-chevron-down\"\n block\n />\n \u003C/UCollapsible>\n\n### Additional context\n\n_No response_",[2896,2899,2902],{"name":2897,"color":2898},"enhancement","a2eeef",{"name":2900,"color":2901},"v3","49DCB8",{"name":2903,"color":2904},"triage","ffffff",4146,"ui","Can we add a reverse prop for collapsible.","2025-05-13T21:49:55Z","https://github.com/nuxt/ui/issues/4146",0.7874808,{"description":2912,"labels":2913,"number":2915,"owner":2868,"repository":2916,"state":2870,"title":2917,"updated_at":2918,"url":2919,"score":2920},"### 🆒 Your use case\r\n\r\nOut-of-the-box Nuxt Scripts won't provide any significant performance gains for most people, the only performance improvement is loading third-party scripts as Nuxt app hydrates, instead of beforehand, which may help with reducing blocking time.\r\n\r\nWe provide some options that can solve these performance issues for third-party scripts through [delaying scripts until they're needed](https://scripts.nuxt.com/docs/guides/script-triggers) or [Facade components](https://scripts.nuxt.com/docs/guides/facade-components).\r\n\r\nHowever, some users will _need_ to load these scripts as quickly as possible without slowing down the Nuxt app hydration. This is the ideal use case for web workers (Partytown).\r\n\r\nRelated https://github.com/nuxt/scripts/issues/56\r\n\r\n### 🆕 The solution you'd like\r\n\r\nWe should be able to provide a simple flag to the `useScript` composable that will offload it to the webworker, no other functionality should change.\r\n\r\nUnder the hood, this will use Partytown. We will either integrate directly with https://github.com/nuxt-modules/partytown or write bespoke code.\r\n\r\n```ts\r\nuseScript('/script.js', {\r\n webworker: true,\r\n})\r\n```\r\n\r\nAll other functionality should work the same.\r\n\r\n### 🔍 Alternatives you've considered\r\n\r\n_No response_\r\n\r\n### ℹ️ Additional info\r\n\r\n_No response_",[2914],{"name":2897,"color":2898},182,"scripts","Add web worker support (Partytown)","2024-12-11T11:46:50Z","https://github.com/nuxt/scripts/issues/182",0.7965117,{"description":2922,"labels":2923,"number":2926,"owner":2868,"repository":2869,"state":2927,"title":2928,"updated_at":2929,"url":2930,"score":2931},"",[2924],{"name":2897,"color":2925},"1ad6ff",1212,"closed","[docs]: add animation on collapsible","2023-02-15T12:31:16Z","https://github.com/nuxt/nuxt.com/issues/1212",0.74378645,{"description":2933,"labels":2934,"number":2926,"owner":2868,"repository":2888,"state":2927,"title":2936,"updated_at":2937,"url":2938,"score":2931},"### Environment\n\n------------------------------\n- Operating System: Darwin\n- Node Version: v20.17.0\n- Nuxt Version: 3.16.0\n- CLI Version: 3.22.5\n- Nitro Version: 2.11.6\n- Package Manager: pnpm@9.9.0\n- Builder: -\n- User Config: compatibilityDate, devtools, future, experimental, app, modules\n- Runtime Modules: @nuxt/test-utils/module@3.17.2\n- Build Modules: -\n------------------------------\n\n### Reproduction\n\nI've added this command so it will automatically start tests after deps install\n\n```\n\"stackblitz\": {\n \"startCommand\": \"pnpm run test\"\n }\n```\n\nhttps://stackblitz.com/~/github.com/gaisinskii/nuxt-testing-issue-base-url\n\n### Describe the bug\n\nThere is some issue with \n\n```\napp: {\n baseURL: '/andy'\n },\n```\n\nand\n\n```\n experimental: {\n appManifest: true\n },\n```\n\nin the nuxt config. Whenever i comment `baseURL` and leave `appManifest: true` everything works, but if I add `baseURL` back I get the error. Also if you set `appManifest: false` and add `baseURL` everything works!\n\n### Additional context\n\nThe errors that I get in the console\n\n```\nstderr | app/components/TheComponent/TheComponent.test.ts\n[nuxt] Error fetching app manifest. FetchError: [GET] \"/andy/_nuxt/builds/meta/test.json\": 404 Cannot find any path matching /andy/_nuxt/builds/meta/test.json.\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at $fetch2 (file:///Users/andy/Projects/admitad/tests-base-url/node_modules/.pnpm/ofetch@1.4.1/node_modules/ofetch/dist/shared/ofetch.03887fc3.mjs:316:15)\n\nstderr | app/components/TheComponent/TheComponent.test.ts\n[nuxt] error caught during app initialization FetchError: [GET] \"/andy/_nuxt/builds/meta/test.json\": 404 Cannot find any path matching /andy/_nuxt/builds/meta/test.json.\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at $fetch2 (file:///Users/andy/Projects/admitad/tests-base-url/node_modules/.pnpm/ofetch@1.4.1/node_modules/ofetch/dist/shared/ofetch.03887fc3.mjs:316:15) {\n cause: FetchError: [GET] \"/andy/_nuxt/builds/meta/test.json\": 404 Cannot find any path matching /andy/_nuxt/builds/meta/test.json.\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at $fetch2 (file:///Users/andy/Projects/admitad/tests-base-url/node_modules/.pnpm/ofetch@1.4.1/node_modules/ofetch/dist/shared/ofetch.03887fc3.mjs:316:15),\n statusCode: 404,\n fatal: false,\n unhandled: false,\n statusMessage: 'Cannot find any path matching /andy/_nuxt/builds/meta/test.json.',\n data: {\n statusCode: 404,\n statusMessage: 'Cannot find any path matching /andy/_nuxt/builds/meta/test.json.',\n stack: []\n }\n}\n```\n\n```\nFetchError: [GET] \"/andy/_nuxt/builds/meta/test.json\": 404 Cannot find any path matching /andy/_nuxt/builds/meta/test.json.\n ❯ processTicksAndRejections node:internal/process/task_queues:95:5\n ❯ $fetch2 node_modules/.pnpm/ofetch@1.4.1/node_modules/ofetch/dist/shared/ofetch.03887fc3.mjs:316:15\n\n```\n\n\n```\nSerialized Error: { request: '/andy/_nuxt/builds/meta/test.json', options: { responseType: 'json', headers: { constructor: 'Function\u003CHeaders>', append: 'Function\u003Cappend>', delete: 'Function\u003Cdelete>', get: 'Function\u003Cget>', set: 'Function\u003Cset>', getSetCookie: 'Function\u003CgetSetCookie>', has: 'Function\u003Chas>', forEach: 'Function\u003CforEach>', keys: 'Function\u003Ckeys>', values: 'Function\u003Cvalues>', entries: 'Function\u003Centries>' } }, response: { _data: { statusCode: 404, statusMessage: 'Cannot find any path matching /andy/_nuxt/builds/meta/test.json.', stack: [] }, constructor: 'Function\u003CResponse>', type: 'default', url: '', redirected: false, status: 404, ok: false, statusText: 'Cannot find any path matching /andy/_nuxt/builds/meta/test.json.', headers: { constructor: 'Function\u003CHeaders>', append: 'Function\u003Cappend>', delete: 'Function\u003Cdelete>', get: 'Function\u003Cget>', has: 'Function\u003Chas>', set: 'Function\u003Cset>', getSetCookie: 'Function\u003CgetSetCookie>', keys: 'Function\u003Ckeys>', values: 'Function\u003Cvalues>', entries: 'Function\u003Centries>', forEach: 'Function\u003CforEach>' }, body: { constructor: 'Function\u003CReadableStream>', locked: true, cancel: 'Function\u003Ccancel>', getReader: 'Function\u003CgetReader>', pipeThrough: 'Function\u003CpipeThrough>', pipeTo: 'Function\u003CpipeTo>', tee: 'Function\u003Ctee>', values: 'Function\u003Cvalues>' }, bodyUsed: true, clone: 'Function\u003Cclone>', blob: 'Function\u003Cblob>', arrayBuffer: 'Function\u003CarrayBuffer>', text: 'Function\u003Ctext>', json: 'Function\u003Cjson>', formData: 'Function\u003CformData>', bytes: 'Function\u003Cbytes>' }, data: { statusCode: 404, statusMessage: 'Cannot find any path matching /andy/_nuxt/builds/meta/test.json.', stack: [] }, status: 404, statusCode: 404, statusText: 'Cannot find any path matching /andy/_nuxt/builds/meta/test.json.', statusMessage: 'Cannot find any path matching /andy/_nuxt/builds/meta/test.json.' }\nThis error originated in \"app/components/TheComponent/TheComponent.test.ts\" test file. It doesn't mean the error was thrown inside the file itself, but while it was running.\nThe latest test that might've caused the error is \"should render the component\". It might mean one of the following:\n- The error was thrown, while Vitest was running this test.\n- If the error occurred after the test had been completed, this was the last documented test before it was thrown.\n```\n\n\n\n### Logs\n\n```shell-script\n\n```",[2935],{"name":2885,"color":2886},"Error fetching app manifest in testing files when baseURL is provided","2025-03-26T13:41:00Z","https://github.com/nuxt/test-utils/issues/1212",{"description":2940,"labels":2941,"number":2945,"owner":2868,"repository":2906,"state":2927,"title":2946,"updated_at":2947,"url":2948,"score":2949},"### Description\n\nHi,\n\nI believe that it would be very interesting to implement in the NavigationMenu an attribute similar to the Accordion multiple to allow to open only branch of the menu when the menu is vertical.\n\nKind regards...Antonio\n\n### Additional context\n\n_No response_",[2942,2943,2944],{"name":2897,"color":2898},{"name":2900,"color":2901},{"name":2903,"color":2904},4072,"NavigationMenu implement Accordion multiple attribute","2025-05-20T14:47:06Z","https://github.com/nuxt/ui/issues/4072",0.7557689,{"description":2951,"labels":2952,"number":2954,"owner":2868,"repository":2869,"state":2927,"title":2955,"updated_at":2956,"url":2957,"score":2958},"https://www.figma.com/file/OLlmzoVQ7FSBh4FJJORNpl/nuxt.com?node-id=2441%3A11054",[2953],{"name":2897,"color":2925},115,"Improve docs navigation bar","2023-02-15T12:30:39Z","https://github.com/nuxt/nuxt.com/issues/115",0.7590451,{"description":2960,"labels":2961,"number":2954,"owner":2868,"repository":2916,"state":2927,"title":2962,"updated_at":2963,"url":2964,"score":2958},"If I have my global scripts set up like so:\r\n\r\n\r\n\r\nThen the scripts are output as expected on the frontend:\r\n\r\n\r\n\r\nHowever, if I pass in a UseScriptInput object, like so:\r\n\r\n\r\n\r\nThen the script is not output:\r\n\r\n\r\n\r\nIf I pass [UseScriptInput, NuxtUseScriptOptions], like so:\r\n\r\n\r\n\r\nI get this error:\r\n\r\n\r\n\r\nENV:\r\nbun 1.1.16\r\nnuxt 3.12.2\r\n@nuxt/scripts 0.5.1\r\n\r\nRunning with compatibility version 4\r\n",[],"Issues using UseScriptInput in the globals section of nuxt.config.ts","2024-07-03T09:16:13Z","https://github.com/nuxt/scripts/issues/115",{"description":2966,"labels":2967,"number":2972,"owner":2868,"repository":2869,"state":2927,"title":2973,"updated_at":2974,"url":2975,"score":2976},"- [x] Remove action dropdown in media items\n- [x] `Branch` and `File` modal buttons should go into root menu at the bottom\n- [x] `Create file` / `Upload file` should go in navbar dialog tree header right\n- [x] `ProjectNavbar` should contain the name of the file and the `Save` / `Publish` / `Preview` (only icon) buttons\n- [x] `ProjectNavbar` online users disappears for now\n- [x] Next to filename in `ProjectNavbar` we should have a `chevron-down` icon to extend the desktop aside panel with: file actions (`Rename` / `Revert` / `Delete`) and tabs (`Meta` / `History`) and `chevron-up` icon to collapse the menu",[2968,2969],{"name":2897,"color":2925},{"name":2970,"color":2971},"responsive","1cd1c6",642,"[Project] Content + Media responsive files aside","2023-02-15T12:32:40Z","https://github.com/nuxt/nuxt.com/issues/642",0.7614818,["Reactive",2978],{},["Set"],["ShallowReactive",2981],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fiN_SJSOyOl8VVnbgVPGazf8bfsg0G2eQPuomSa171AI":-1},"/nuxt/nuxt.com/1033"]