`\r\nthe \"default\" configuration is applied as well (`bottom-0 end-0 `) this happens also if defining the position using the app.config.ts.. I'm assuming i'm doing it wrong.. please advice.. \r\n",[3174,3177],{"name":3175,"color":3176},"duplicate","cfd3d7",{"name":3138,"color":3139},2180,"ui","Notification position","2024-09-11T14:08:24Z","https://github.com/nuxt/ui/issues/2180",0.69760513,{"description":3185,"labels":3186,"number":3189,"owner":3140,"repository":3190,"state":3166,"title":3191,"updated_at":3192,"url":3193,"score":3194},"(reported on discord) you can see by hard-reloading https://nuxt.com/modules?q=svg, for example.\r\n\r\nprobably similar to https://github.com/nuxt/nuxt.com/issues/1417",[3187],{"name":3159,"color":3188},"ff281a",1455,"nuxt.com","query parameters on module page result in hydration mismatch","2025-03-24T22:03:27Z","https://github.com/nuxt/nuxt.com/issues/1455",0.7070836,{"description":3196,"labels":3197,"number":3202,"owner":3140,"repository":3179,"state":3166,"title":3203,"updated_at":3204,"url":3205,"score":3206},"### Description\n\nThe [documentation](https://ui.nuxt.com/components/date-picker) uses v-calendar as an example to create a date picker component. However, v-calendar is likely abandoned and will no longer be maintained (see https://github.com/nathanreyes/v-calendar/issues/1503 ) . Latest release was over a year ago.\n\nAlso, it has a dependency on a vulnerable lodash version ( see https://github.com/nathanreyes/v-calendar/issues/1420 ).\n\nWhat other alternatives are you planning on using in your documentation, or are there any other examples using a different library?\n\nThanks.",[3198,3199],{"name":3138,"color":3139},{"name":3200,"color":3201},"wontfix-v2","ffffff",3239,"DatePicker documentation uses library that's no longer maintained","2025-02-04T20:40:38Z","https://github.com/nuxt/ui/issues/3239",0.72055733,{"description":3208,"labels":3209,"number":3214,"owner":3140,"repository":3179,"state":3166,"title":3215,"updated_at":3216,"url":3217,"score":3218},"### Environment\n\n\n\nI get this error anytime I try and use \u003CUInput /> even without any other code.\n\n### Version\n\nv3.0.0-alpha.5\n\n### Reproduction\n\n`\u003Ctemplate>\n \u003CUContainer>\n \u003CUForm :schema=\"schema\" :state=\"state\" class=\"space-y-4\" @submit=\"onSubmit\">\n \u003CUFormField label=\"Code\" name=\"Code\"\n >\u003CUInput v-model=\"state.code\" />\n \u003C/UFormField>\n \u003C/UForm>\n \u003C/UContainer>\n\u003C/template>\n\n\u003Cscript setup lang=\"ts\">\nimport { z } from 'zod';\nimport type { FormSubmitEvent } from '#ui/types';\n\nconst supabase = useSupabaseClient();\nconst toast = useToast();\n\n//Form\nconst schema = z.object({\n code: z.string().min(3),\n});\n\ntype Schema = z.output\u003Ctypeof schema>;\n\nconst state = reactive\u003CPartial\u003CSchema>>({\n code: undefined,\n});\n\nasync function onSubmit(event: FormSubmitEvent\u003CSchema>) {\n toast.add({\n title: 'Success',\n description: 'The form has been submitted.',\n color: 'success',\n });\n console.log(event.data);\n}\n\u003C/script>\n`\n\n### Description\n\nUInput causes an error\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[3210,3211],{"name":3159,"color":3160},{"name":3212,"color":3213},"v3","49DCB8",2349,"UInput causes error","2024-10-10T14:15:25Z","https://github.com/nuxt/ui/issues/2349",0.7213189,{"description":3220,"labels":3221,"number":3224,"owner":3140,"repository":3179,"state":3166,"title":3225,"updated_at":3226,"url":3227,"score":3228},"### For what version of Nuxt UI are you asking this question?\n\nv3.0.0-alpha.x\n\n### Description\n\n### Environment\n\n* Operating System: Linux\n* Node Version: v20.15.1\n* Nuxt Version: 3.14.1592\n* Package Manager: npm@10.7.0\n* Nuxt UI: v3.0.0-alpha.x\n\n### Description\nHello, I have the following configurations; \n\n#### assets/css/main.css\n```css\n@import \"tailwindcss\";\n@import \"@nuxt/ui\";\n\n@theme {\n /* Font Family Extend */\n --font-display: 'Work Sans', sans-serif;\n --font-content: 'Roboto', sans-serif;\n --font-condensed: 'Roboto Condensed', sans-serif;\n\n\n /* Color Extend */\n --color-brand-50: #fef4ee;\n --color-brand-100: #fcdbc5;\n --color-brand-200: #facaae;\n --color-brand-300: #f6a57b;\n --color-brand-400: #f27545;\n --color-brand-500: #ee5221;\n --color-brand-600: #df3917;\n --color-brand-700: #b92915;\n --color-brand-800: #932219;\n --color-brand-900: #772017;\n --color-brand-950: #400d0a;\n}\n\n:root {\n --ui-primary: var(--color-brand-500);\n}\n```\n\nand my nuxt.config.ts file; \n```ts\nexport default defineNuxtConfig({\n // ....\n modules: ['@nuxt/ui', '@pinia/nuxt'],\n css: ['~/assets/css/main.css', '~/assets/scss/common.scss'],\n vite: {\n css: {\n preprocessorOptions: {\n scss: { api: 'modern-compiler' }\n }\n }\n },\n // ....\n});\n```\nWith the configurations defined as above when i set ssr:false in my nuxt.config.ts, my custom color called 'brand' is not applied to components and the default green is used from the tailwind. With ssr: true everything is ok with `npm run dev`. I also tried to set the color 'brand' in app.config.ts \n\n```ts\nexport default defineAppConfig({\n ui:{\n colors: {\n primary: 'brand'\n }\n }\n});\n``` \nwith this setting again everything works but this time ts complains about `Type '\"brand\"' is not assignable to type 'Color | undefined'.ts(2322)`. \n\nI did not find a true way to set colors from extended tailwindcss color palette. Thanks in advance for any help.\n\n\nThe following screenshot; ssr: false and primary color defined on ```:root {}``` \n\n\n\nThe following screenshot; ssr: true and primary color defined on ```:root {}``` \n\n\n\n\n \nThe following screenshot; ssr: false and primary color defined on 'appconfig' but this time I have the following error from ts\n\n\n\n\n\n\nEdit 1: \n> [!IMPORTANT]\n> I also tried to extend on a types/colors.d.ts file the `tailwindcss/colors` namespace to add my custom color but no chance\n\n```ts\nimport colors from 'tailwindcss/colors'\n\n\ndeclare module 'tailwindcss/colors' {\n const colors = colors | 'brand'\n export default colors;\n}\n```\n\n",[3222,3223],{"name":3138,"color":3139},{"name":3212,"color":3213},2869,"Use a custom color instead of the predefined Tailwind colors with ssr false","2024-12-16T09:47:16Z","https://github.com/nuxt/ui/issues/2869",0.72176564,{"description":3230,"labels":3231,"number":3237,"owner":3140,"repository":3140,"state":3166,"title":3238,"updated_at":3239,"url":3240,"score":3241},"### Environment\n\n```\r\n- Operating System: `Linux`\r\n- Node Version: `v19.4.0`\r\n- Nuxt Version: `3.0.0`\r\n- Nitro Version: `1.0.0`\r\n- Package Manager: `npm@8.19.2`\r\n- Builder: `vite`\r\n- User Config: `-`\r\n- Runtime Modules: `-`\r\n- Build Modules: `-`\r\n\r\n```\n\n### Reproduction\n\nhttps://github.com/gAtrium/npreprod\r\n\r\nhttps://github.com/gAtrium/udev (second example)\n\n### Describe the bug\n\nStatic site generated for github pages ignores base router url setting in nuxt.config.ts.\r\nLogs beneath should give 404 responses as the router should have made requests to the `/npreprod/` instead.\r\n\r\nAnother example is the [example](https://gatrium.github.io/udev/) I've made for my uni's community. It makes requests to the root of my github pages instead of repo's designated url.\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\nFirst example\r\n\r\n➜ npreprod git:(master) ✗ ls \r\napp.vue nuxt.config.ts package-lock.json README.md\r\nnode_modules package.json pages tsconfig.json\r\n➜ npreprod git:(master) ✗ npx nuxi generate\r\nNuxi 3.0.0 19:46:04\r\nNuxt 3.0.0 with Nitro 1.0.0 19:46:04\r\n\r\n WARN Using experimental payload extraction for full-static output. You can opt-out by setting experimental.payloadExtraction to false.\r\n\r\nℹ Client built in 1561ms 19:46:07\r\nℹ Building server... 19:46:07\r\n✔ Server built in 500ms 19:46:07\r\n✔ Generated public .output/public nitro 19:46:07\r\nℹ Initializing prerenderer nitro 19:46:07\r\nℹ Prerendering 4 initial routes with crawler nitro 19:46:08\r\n ├─ / (76ms) nitro 19:46:08\r\n ├─ /testpage (8ms) nitro 19:46:08\r\n ├─ /200.html (2ms) nitro 19:46:08\r\n ├─ /404.html (1ms) nitro 19:46:08\r\n ├─ /testpage/ (5ms) nitro 19:46:08\r\n ├─ /_payload.js (2ms) nitro 19:46:08\r\n ├─ /testpage/_payload.js (4ms) nitro 19:46:08\r\n✔ You can now deploy .output/public to any static hosting! 19:46:08\r\n➜ npreprod git:(master) ✗ cd .output/public \r\n➜ public git:(master) ✗ ls\r\n200.html 404.html index.html _nuxt _payload.js testpage\r\n➜ public git:(master) ✗ python3 -m http.server\r\nServing HTTP on 0.0.0.0 port 8000 (http://0.0.0.0:8000/) ...\r\n127.0.0.1 - - [19/Jan/2023 19:46:25] \"GET / HTTP/1.1\" 200 -\r\n127.0.0.1 - - [19/Jan/2023 19:46:25] \"GET /_nuxt/index.c941bb0d.js HTTP/1.1\" 200 -\r\n127.0.0.1 - - [19/Jan/2023 19:46:25] \"GET /_nuxt/entry.e1dea534.js HTTP/1.1\" 200 -\r\n127.0.0.1 - - [19/Jan/2023 19:46:25] \"GET /_payload.js HTTP/1.1\" 200 -\r\n127.0.0.1 - - [19/Jan/2023 19:46:25] \"GET /_nuxt/testpage.57e8bea7.js HTTP/1.1\" 200 -\r\n127.0.0.1 - - [19/Jan/2023 19:46:25] \"GET /testpage/_payload.js HTTP/1.1\" 200 -\r\n127.0.0.1 - - [19/Jan/2023 19:46:35] \"GET /testpage/ HTTP/1.1\" 200 -\r\n127.0.0.1 - - [19/Jan/2023 19:46:35] \"GET /_nuxt/testpage.57e8bea7.js HTTP/1.1\" 304 -\r\n127.0.0.1 - - [19/Jan/2023 19:46:35] \"GET /_nuxt/entry.e1dea534.js HTTP/1.1\" 304 -\r\n127.0.0.1 - - [19/Jan/2023 19:46:35] \"GET /testpage/_payload.js HTTP/1.1\" 304 -\r\n127.0.0.1 - - [19/Jan/2023 19:46:42] \"GET / HTTP/1.1\" 304 -\r\n127.0.0.1 - - [19/Jan/2023 19:46:42] \"GET /_nuxt/index.c941bb0d.js HTTP/1.1\" 304 -\r\n127.0.0.1 - - [19/Jan/2023 19:46:42] \"GET /_nuxt/entry.e1dea534.js HTTP/1.1\" 304 -\r\n127.0.0.1 - - [19/Jan/2023 19:46:42] \"GET /_payload.js HTTP/1.1\" 304 -\r\n127.0.0.1 - - [19/Jan/2023 19:46:42] \"GET /_nuxt/testpage.57e8bea7.js HTTP/1.1\" 304 -\r\n127.0.0.1 - - [19/Jan/2023 19:46:42] \"GET /testpage/_payload.js HTTP/1.1\" 304 -\r\n^C\r\nKeyboard interrupt received, exiting.\r\n```\r\n\r\nFor the second example you need to locate to https://gatrium.github.io/udev/ and inspect the network traffic from your browser's Developer Tools\n```\n",[3232,3235],{"name":3233,"color":3234},"3.x","29bc7f",{"name":3162,"color":3236},"E99695",12416,"V3 - generated static site makes requests to the root directory even when the base property is set","2023-01-21T21:23:39Z","https://github.com/nuxt/nuxt/issues/12416",0.72779465,{"description":3243,"labels":3244,"number":3247,"owner":3140,"repository":3179,"state":3166,"title":3248,"updated_at":3249,"url":3250,"score":3251},"### Environment\n\n-\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nv3.16.0\n\n### Reproduction\n\n- \n\n### Description\n\nUpgraded all deps to the latest and bam Nuxt 3.16.0 is added. We get errors now as Nuxt UI 3 still ships with\n\n`'@unhead/vue': 1.11.20(vue@3.5.13(typescript@5.8.2))\n`\n\nAs of Nuxt 3.16.0 ships with @unhead2:\nhttps://nuxt.com/blog/v3-16#unhead-v2\n\nActual error:\n`[@nuxt/scripts 9:42:20 PM] ERROR Nuxt Scripts requires Unhead >= 2, you are using v1.11.20. Please run nuxi upgrade --clean to upgrade...`\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[3245,3246],{"name":3159,"color":3160},{"name":3212,"color":3213},3513,"Nuxt 3.16.0 - ships with @unhead2","2025-03-10T08:49:36Z","https://github.com/nuxt/ui/issues/3513",0.72802955,["Reactive",3253],{},["Set"],["ShallowReactive",3256],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fAvDApmoeF-fDKtyb2lwHJJNukItryDnpOMdHgZLT2BY":-1},"/nuxt/nuxt.com/1857"]