Carlos Marques
Carlos Marques
Instead of using the arrow function: ```vue (e) => { e.preventDefault() e.stopPropagation() form.handleSubmit() } ``` we can just use [event modifiers](https://vuejs.org/guide/essentials/event-handling#event-modifiers) like this: ```vue @submit.prevent.stop="form.handleSubmit" ``` enhancing readability ✨
Fixed the following typos `query.constants.ts` `token.constants.ts`
**Problem** At the moment `lnbits` only returns `{"detail": ""}` for errors. Example: `{"detail": "Invalid credentials."}` To translate this error in my application, I would need to `switch` on the detail...
In the `package.json` I see `@ztl-uwu/nuxt-content` instead of the original `@nuxt/content`. Why maintain a fork of `nuxt-content`?
Here in the docs: https://shadcn-docs-nuxt.vercel.app/getting-started/installation there is only documentation to "install" `shadcn-docs-nuxt` by using the starter template. Should we add documentation on how to add `shadcn-docs-nuxt` into an existing Nuxt...
### Version @nuxtjs/supabase: 1.6.2 pnpm: 10.23.0 node: 22.20 ### Steps to reproduce https://stackblitz.com/edit/nuxt-starter-ij2jcsq3 (Add .env vars add run) 1. Create a project with nuxt and nuxt/supabase. ```bash pnpm create nuxt@latest...
Supabase would keep function hash remotely and then before deploying, compare against local hash. Optional flag: `--skip-no-changes` or something else. Note: I see `No change found in Function` if there...
Allow additional props - `startDay` - `endDay` - `endMonth` - `startMonth` Or - `startDay` - `endDay` Or - `startDate` - `endDate`