bro

Results 7 comments of bro

@aivangogh, which version of Bun do you have?

@JoeyRichter confirmed. I use Docker in the project, and the backend is based on the official Bun Docker image. Nothing worked until I installed Node. After that, it worked for...

@supfiger here you are ``` ARG VARIANT=latest FROM oven/bun:${VARIANT} RUN apt-get update \ && apt-get -y install --no-install-recommends \ git \ nano \ curl \ vim-tiny \ ca-certificates \ &&...

yes, sure... I'm using typescript // server.ts ``` import { fastifyUws, serverFactory } from '@geut/fastify-uws' import fastify from 'fastify' import dotenv from 'dotenv' import app from './app' dotenv.config() const port...

This request ('/create') is not executed at all, and there are no errors either, it just frozen. But if remove prehandler (on server) and credentials (on client for this particular...

P.S. One more clarification. The issue occurs only if the data is transferred via "body". If transferring through "query" then all works correctly too

Thank you for your time. It turned out to be much more complicated. The conflict occurs with the "session.store" module. But so far, I have not figured out what exactly...