NovelNet
NovelNet
having the exact same problem on node v17.5.0, gatsby 4.11.2 and netlify-cli ^9.13.2
Solved the issue for me, having an index.js placeholder in src/pages/ (as i usually only used src/pages/de/ with locale redirect: domain.com/de/) ``` const IndexPage = () => { return ""...
Set facingMode to 'environment' and override getVideoInputs like this works for me: ```javascript import Webcam from 'webcam-easy'; import b64toBlob from 'b64-to-blob'; class NoMirrorWebcam extends Webcam { // override function as...
Following up, i have the exact same issue. Works fine on local gatsby build but fails at netlify build. ``` { resolve: `gatsby-plugin-intl`, options: { // language JSON resource path...
I also tried to use /de-ch instead of /ch and got issues like switching randomly between /de and /de-ch or some pages are white. I'm also trying to replace the...
Hey @NollieLeo, did you find any solution?
> Having the same issue, this occurs with every single `db:push` command (even when there was no change to timestamp). > > Removing the `precision` fixes it. https://github.com/drizzle-team/drizzle-orm/issues/2160#issuecomment-2075501847 Above helped...
Same issue here: https://github.com/drizzle-team/drizzle-orm/issues/2210
Fix (same with DrizzleAdapter): ``` import type { Adapter } from 'next-auth/adapters'; [...] adapter: PrismaAdapter(prisma) as Adapter ``` _Originally posted by @bayasdev in https://github.com/nextauthjs/next-auth/issues/9493#issuecomment-1871601543_
@MihaelaStoica works great for me now!