Sébastien Palluel

Results 7 comments of Sébastien Palluel

Hi, As explained here : https://stackoverflow.com/questions/47468643/how-to-display-mysql-blob-image-in-html-using-vuejs You need a function that return the string with the buffer in the right format. Once you've done that ->`:prefill="dataUrl()"` will do the trick...

I have a different issue while updating prettier to the latest version `v3.0.0`: ```zsh > NX Running global Nx CLI with PNPM may have issues. Prefer to use "pnpm" (https://pnpm.io/cli/exec)...

> I had same issue this week, I downgraded to `prettier@^2` Well i can confirm that i don't have any issue on my end with `"prettier": "^3.0.3"` and nx version...

I'm using `next-intl` with parallel and intercepting route without issue on my project. From what i see in your project, the issue is with your implementation of the parallel routes...

I have the same HMR issue with vite when running nuxt3 on Docker. It's reloading the page indefinitely. The port **24678** is open and the config seems right. This issue...

The solution was to remove this config from the `nuxt.config.ts`: ```js server: { hmr: { protocol: 'ws' host: 'localhost' } } ``` As long as you bind port `24678` to...

> Since Vercel KV is based on the `@upstash/redis` library, you can use [Serverless Redis HTTP (SRH)](https://github.com/hiett/serverless-redis-http) to run a local HTTP endpoint for development. (See: https://docs.upstash.com/redis/sdks/javascriptsdk/developing-or-testing) > > This...