Mark
Mark
I tried setting `NODE_ENV` to `production`, but so far I'm seeing the same results. Maybe I didn't do it correctly? I also edited the server.js file directly as well and...
@juliusmarminge I started working on a Kysely adapter and then found this post. Were you working on one too or holding off?
Hey @lawrencecchen, nice work. I have a branch with a pretty similar implementation + tests and docs: https://github.com/nextauthjs/next-auth/compare/main...mwojtul:next-auth:kysely-adapter Almost ready to PR, just need to do some cleanup and add...
@lawrencecchen thanks! > * is it necessary to use pgcrypto? afaik, gen_random_uuid() is built in since postgres 14, and next-auth doesn't do passwords/hashing It does seem like it might be...
> In my idea I had type validation for the tables too, so they had to extend the minimal fields defined in https://next-auth.js.org/adapters/models/. Good idea. I've added the same type...
I also needed to configure `@vitejs/plugin-vue`. The order matters since it has to come before the `vue-docgen` plugin: ``` async viteFinal(config) { const pluginVueIndex = config.plugins.findIndex(config => config.name === 'vite:vue');...