Benjamin MENANT
Benjamin MENANT
:+1: Another use case would be for multilingual content. ``` markdown > Je pense donc je suis. {:lang="fr"} ```
@ivan-tymoshenko Did you see https://github.com/fastify/fast-json-stringify/pull/414 ? I tried to tackle this as well, started with pretty much the same changes you did so far, and went even further way, before...
Plus, it’d make a fairly good and smart UX improvement. Less is more: while one’s looking for a key, services names are the only thing he needs. Anything more is...
> This should be done using injectRoute function in the astro:config:setup to inject localized routes during build time. It sounds like [astro-18n-aut](https://github.com/jlarmstrongiv/astro-i18n-aut)’s approach, doesn’t it?
It really comes with trouble when `showDefaultLocale` is enabled: ```javascript { defaultLocale: 'en', locales: ['en', 'fr'], showDefaultLocale: true, } ``` `localizePath('/about')` gives `/en/about` which turns out to be a broken...
@SebTM consider reverting your default networking tool to `slirp4netns` instead of `pasta` as described here: https://blog.podman.io/2024/03/podman-5-0-breaking-changes-in-detail/
@SebTM Maybe set the network mode to slirp4netns from your compose file? https://docs.podman.io/en/latest/markdown/podman-pod-create.1.html#network-mode-net Pasta works fine in a similar stack of mine (pod setup, not compose) as soon as there’s...
More specific toolbox containers would also benefit from those envs, since some devtools prefix commands with various environment variables to execute tests, compilation, linting, debugging session, etc. For example, to...
:tada: This issue has been resolved in version 3.71.3 :tada: The release is available on [GitHub release](https://github.com/dis-moi/extension/releases/tag/v3.71.3) Your **[semantic-release](https://github.com/semantic-release/semantic-release)** bot :package::rocket:
@JulianCataldo another workaround is to use `assert.AssertionError` instead: ```ts import assert from 'node:assert/strict'; const { AssertionError } = assert; new AssertionError(); // Or... new assert.AssertionError(); ``` I ran into this...