Alex
Alex
How about showing the text under the image? You could set an break-point and switch to `flex-direction: column`. It could look like this: 
It looks like your browser build tries to bundle in some node.js specific stuff. Try adding `type` to your express import. ``` import type { Request, Response } from 'express';...
This looks like a breaking change as you are removing `provideTranslocoScope`. I think adding `provideTranslocoScopes` as an additional function would be a better idea
Connecting is pretty easy. Open a Websocket Connection to "ws://:/". Then you can send your stringified JSON messages. Your payload should look like this: ``` { Identifier: identifier, // int...
@garrynewman is there something wrong with this PR?
I had an similar problem. try to install `"ipx": "^3.0.1"`
I'm glad it worked. The current version of `@nuxt/image` uses ipx version 2.x.x, which depends on sharp version 0.32.x. If you upgrade ipx to version 3.x.x, sharp version 0.33.x is...
The previous workaround won't work with the latest nuxt release. Add this to your `package.json`: ```json "resolutions": { "ipx": "^3.0.0" } ```