`\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",[2959,2962],{"name":2960,"color":2961},"duplicate","cfd3d7",{"name":2904,"color":2905},2180,"Notification position","2024-09-11T14:08:24Z","https://github.com/nuxt/ui/issues/2180",0.69760513,{"description":2969,"labels":2970,"number":2973,"owner":2907,"repository":2974,"state":2951,"title":2975,"updated_at":2976,"url":2977,"score":2978},"(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",[2971],{"name":2944,"color":2972},"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":2980,"labels":2981,"number":2985,"owner":2907,"repository":2935,"state":2951,"title":2986,"updated_at":2987,"url":2988,"score":2989},"### 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.",[2982,2983],{"name":2904,"color":2905},{"name":2984,"color":2933},"wontfix-v2",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":2991,"labels":2992,"number":2995,"owner":2907,"repository":2935,"state":2951,"title":2996,"updated_at":2997,"url":2998,"score":2999},"### 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_",[2993,2994],{"name":2944,"color":2945},{"name":2929,"color":2930},2349,"UInput causes error","2024-10-10T14:15:25Z","https://github.com/nuxt/ui/issues/2349",0.72131896,{"description":3001,"labels":3002,"number":3005,"owner":2907,"repository":2935,"state":2951,"title":3006,"updated_at":3007,"url":3008,"score":3009},"### 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",[3003,3004],{"name":2904,"color":2905},{"name":2929,"color":2930},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":3011,"labels":3012,"number":3018,"owner":2907,"repository":2907,"state":2951,"title":3019,"updated_at":3020,"url":3021,"score":3022},"### 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",[3013,3016],{"name":3014,"color":3015},"3.x","29bc7f",{"name":2947,"color":3017},"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,["Reactive",3024],{},["Set"],["ShallowReactive",3027],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fAvDApmoeF-fDKtyb2lwHJJNukItryDnpOMdHgZLT2BY":-1},"/nuxt/nuxt.com/1857"]