stefanprobst
stefanprobst
@voxpelli i think one thing still open is a "leaves only" option, see https://github.com/sindresorhus/type-fest/issues/432#issuecomment-1321117787
> Lets keep track of that in https://github.com/sindresorhus/type-fest/issues/860, easier to pinpoint then. Does that sound good? perfect, thanks!
still interested in this.
is there a way to add a prettier-ignore comment to silence that error?
running with `--immutable` flag seems to generate invalid ts: `export readonly interface paths {}` see: ```bash npx openapi-typescript@next https://raw.githubusercontent.com/OAI/OpenAPI-Specification/main/examples/v3.0/petstore.yaml --immutable | head ``` error: ``` 'readonly' modifier can only appear...
it is working fine for me with `next-intl` - can you share a repo?
i am using Next.js (14.2.0-canary.30), and am currently using a work-around modelled after [this comment](https://github.com/Thinkmill/keystatic/issues/978#issuecomment-2005730530), which seems to do the trick: ```ts import { makeRouteHandler } from "@keystatic/next/route-handler"; import config...
in case it's useful to someone, i am currently replacing native markdown footnotes with a custom [`mark`](https://keystatic.com/docs/content-components#mark) `` component, and using a remark plugin to split that into footnote reference...
@adamlewkowicz i put together an example here: https://github.com/stefanprobst/keystatic-footnotes in an .mdx file it will look like this: ```mdx This text has a footnote.This is the footnote text. This is the...
in astro 4.6, you can use the "manual" i18n routing strategy, and add your own middleware: https://docs.astro.build/en/guides/internationalization/#manual