deniznet

Results 9 comments of deniznet

> Hi. CodeUI target does not contain Python or Node run time to speed up the build process. You must build the Code target and install it on an actual...

Thank you! I've tried it. Even I cloned git with submodules git clone --recurse-submodules https://github.com/holzschu/Carnets.git than .get_frameworks and after that sh ./downloadAndCompile.sh so I've got an error: Updating submodules... Compiling...

> Thanks! Hi! So, where was mistakes? I have the same error in project Laravel+InertiaJS+React(TS)+Vite+SSR. Command npm run build - without error. Run php aritsan inertia:start-ssr without error. But when...

May be need anybody) I added global declaration ziggy to /resources/js/type/global.d.ts: ``` import { route as ziggyRoute } from 'ziggy-js'; declare global { var route: typeof ziggyRoute; } ```

Oo! It's incredible! I'v found solution! When openByDefault = true then onMove take index=0 always. But if I toggle to openByDefault=false, so onMove work perfectly! Why? ```

> Hi [@deniznet](https://github.com/deniznet), after some refactoring this morning I had the same issue. > > Turns out that I messed up with my DATABASE_URL env variable. Once I fixed it,...

Hi! I have the same problem! Adding param in .env: ``` PRISMA_ENGINES_MIRROR=https://github.com/prisma/prisma-engines/releases PRISMA_BINARIES_MIRROR=https://npmmirror.com/mirrors/prisma PRISMA_ENGINES_CHECKSUM_IGNORE_MISSING=1 ``` and in Windows env too: >SET PRISMA_ENGINES_MIRROR="https://github.com/prisma/prisma-engines/releases" >SET PRISMA_BINARIES_MIRROR="https://npmmirror.com/mirrors/prisma" >SET PRISMA_ENGINES_CHECKSUM_IGNORE_MISSING=1 by https://github.com/prisma/prisma-engines/releases I got:...

Oh! I have solution! My steps: I set Windows env var: setx PRISMA_ENGINES_MIRROR "https://binaries.prismacdn.com" setx PRISMA_BINARIES_MIRROR "https://npmmirror.com/mirrors/prisma" setx PRISMA_ENGINES_CHECKSUM_IGNORE_MISSING 1 but in my app npm i -D prisma no effect...