leqwasd

Results 13 comments of leqwasd

I think I got it working. In webpack.config.ts > { test: /\.scss$/, loaders: ['to-string-loader', 'css-loader', 'resolve-url-loader', 'sass-loader?sourceMap'] }, { test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/, loader: "url-loader?limit=10000&minetype=application/font-woff"}, { test: /\.(png|jpg|jpeg|gif|svg)$/, loader: "url-loader?limit=10000" }, {...

Hi, I am considering using this. At this point, we are generating static HTML with react and react-dom/server, then feeding that html into Puppeteer's page, and rendering PDF. I don't...

I am having a trouble understanding this. From the example - where do I put that `TaskStartedListener` class? How does it connects to the queue?

I don't get it. I created a class: ```csharp public class TaskStartedListener: IListener { public Task HandleAsync(QueueTaskStarted broadcasted) { System.Diagnostics.Debug.WriteLine($"QueueTaskStarted {broadcasted.Guid}"); return Task.CompletedTask; } } ``` In my `ConfigureServices` I...

All right, I figured I had to register it like this: ```csharp var provider = app.ApplicationServices; IEventRegistration registration = provider.ConfigureEvents(); registration.Register().Subscribe(); ``` You should add some help text about registering...

1) LinkProps includes RegisteredRouter by default ```ts export type LinkProps ReactNode)) & (string | ... 4 more ... | ReactPortal)) | null | undefined; ... 287 more ...; onTransitionEndCapture?: TransitionEventHandler...

Adding ```tsx {...toOptions} from={"/"} ``` satisfies props.. But this will overwrite the `"from"` from the `toOptions`

So did anyone inspected - what's wrong with ToOptions? In my optinion - that is a user friendly type to be used in this place!

How about this solutions? Honestly - I have just tried zod for like a couple of hours, but I immediately stumped on this issue. ```typescript import { z } from...

I have had the same issue, a couple of months ago. The most awkward thing - this "chmod `1000:0`" **is** the user, that is used by the image (e.g. user...