Michał Miszczyszyn
Michał Miszczyszyn
It's curious this bug doesn't occur outside of a monorepo setup. I can reproduce it in an almost-empty turborepo: 1. `npx create-turbo@latest turbopack-bug` 2. Update `next` to `canary` 3. Enable...
Updated
@piekarskid did you find time for this project? I've started working on the Polish translation myself and it's going well. I'll have a few chapters ready this week.
@KtorZ the repo is here: https://github.com/typeofweb/mostly-adequate-guide-polish Chapters 1, 2 and 3 are translated, I'll work on the rest of them this week.
My use case for this feature: We're an international team but our "reference timezone" is always UTC. So we want our datepickers to always work in UTC and always show...
👍 That's exactly the same problem I have. It seems that the comma operator shouldn't be here.
I've implemented this for my blog. Maybe someone will find it helpful: https://github.com/typeofweb/typeofweb.com/blob/main/generateCommentsCount.ts
Yes, I understand the issue. I think the solution might be to only enable it for self-hosted instances or (in the future) for paid accounts?
I don't see a way to do that currently > ADDITIONAL_PAGES=api/discussions/comments-count.tsx,api/some-other-api.ts > ENABLE_ADDITIONAL_PAGES=false However, it would be trivial to add an `if (!process.env.ENABLE_ADDITIONAL_PAGES) { return res.status(404).end(); }`
Yes, it will create the endpoint. Is that a problem @laymonage ?