Evert van Brussel
Evert van Brussel
@sosukesuzuki how about this weekend? 😇
I'm having the opposite problem. For me it doesn't sort my classes, but I want it too. I don't have a `tailwind.config.js`, but I do have a `tailwind.config.cjs` file.
Sorry, my mistake. I still had these functions in my entity ```php public function getPhone(): ?string { return $this->phone; } public function setPhone(string $phone): self { $this->phone = $phone; return...
Hmm, something is still not right. Right now it seems to work properly when I try to validate Dutch phone numbers, but when I try to validate Nigerian phone numbers...
Routify has a way to make this work using the [`$ready()` function](https://routify.dev/docs/helpers#ready). Maybe Sapper could allow implement similar? You know, just 2 ways of declaring when you finish SSR and...
> I wonder if it's possible to modify the SSR compiler to produce async code. So that the produced code actually executes all promises it encountered in {#await} blocks, and...
@Conduitry I was running up against this problem again and in my search for a solution I found this: https://github.com/Yukaii/synchronized-promise With that package, you can wait for a promise synchronously....
Why not? Doesn't both Sapper _and_ Sveltekit both run on node on the server side? Are there any plans to make them work in other environments?
Ah okay, that's too bad then >
I'm having the same difficulty. I assume I have something wrong in my configuration, but I don't know what. Also, since the `access_token` is acquired by `client_credentials`, it is not...