Rednas
Rednas
Looking at https://next-auth.js.org/configuration/providers/credentials it probably requires to add a `credentialsProvider` in `server/api/auth` 
For the sqllite support it's probably better to make the password optional in the validation. This because sqlite has no authentication. `DATABASE_PASSWORD: z.string().optional(),` Perhaps you can also mention to setup...
Do you also have a plan to add an example for a todo application? I can see a definition for a tasks table, but no code/page to interact with it...
Perhaps you can also have a look at https://github.com/Atinux/nuxt-todos-edge Which uses Drizzle ORM and nuxt ui. And also https://formkit.com/essentials/schema#form-generation-example
I also have it after updating to `3.14.0` and it seems to happen after `warming up` when looking in `debug` mode.  ``` ------------------------------ - Operating System: Windows_NT - Node...
Idk, for me it happened when using the resolver from `@nuxt/kit` inside a nuxt module. Something like ``` import { defineNuxtModule, createResolver } from "@nuxt/kit" const { resolve } =...
Worked for me after changing the `tsConfigPath` **components.json** `"tsConfigPath": "./.nuxt/tsconfig.json",` But the `add` script is for some reason not adding the required utils in `utils/shadcn.ts` on my windows machine. ...
Why not share the `utils` on default with the server? **Something like** ``` [app]/utils/capitalize.ts // Shared with the server on default [app]/utils/capitalize.client.ts // Client only [app]/utils/capitalize.server.ts // Server only ```...
Idk, seems like a bit more complicated ux to me. **Something like** ``` shared/utils/capitalize.ts // Shared with the server [app]/utils/capitalize.ts // Client only server/utils/capitalize.ts // Server only ``` **Versus in...
I know `server` and `app` are 2 different entities, but to have as little friction as possible I think a universal `utils`/`library` folder could help a lot. Would also be...