Samuel Plumppu
Samuel Plumppu
FYI https://www.netlify.com/blog/netlify-cms-to-become-decap-cms/ https://techhub.p-m.si/insights/introducing-decap-cms/
Very early but a promising alternative. https://github.com/Thinkmill/keystatic
@gewfy Yes I tried it a while ago! :D Seems promising but missing some things so far. Looking forward to the updated version of Decap CMS, and also noticing that...
One solution might be to add a separate "Copy debug info" button? That could include OS, OS version, app version, and maybe more? That would make it easy to create...
Thanks for the feedback. This would be a good option to preserve the URL hash to allow for these use cases. One idea for how to implement it in pagecrypt...
It now seems to be possible to let Astro import remote images. It's not perfect but it could be a good improvement compared to plain `` tags https://docs.astro.build/en/guides/images/#remote-images > Remote...
For sure, I'll have a look when I have a moment! :)
I've fixed the type-checking errors and both `npm typecheck` as well as `npm test` pass locally. ## Notes while fixing this: - Would it be worth it to have a...
The issue is because `.slice()` returns `number[]` and doesn't preserve more specific types, like our `Extent` tuple type. In TypeScript, it's possible to preserve the type when using `.slice()` like...
> for users of JavaScript, tuples will complicate things, because they will always have to do type casts of this kind in their applications too. Thanks for the input! I...