Eric Burel

Results 245 comments of Eric Burel

@Timi-Duban in the short run, we would need to add new endpoint to have the same features as described here in VulcanMeteor: https://github.com/VulcanJS/Vulcan/blob/devel/packages/vulcan-users/lib/server/mutations.js In Vulcan Meteor, we rely on Meteor...

How Vercel dashboard is implementing this pattern: https://github.com/vercel/next.js/discussions/10724#discussioncomment-720 They don't try to prevent the initial rendering of the page shell, you can notice it by opening `vercel.com/dashboard` without being logged...

Coming back at the idea of a reverse proxy: It seems that to fully exploit Next capabilities, it's better not to try to do everything within the framework, but think...

Redirection documentation seems to have been updated, making this even more relevant: https://nextjs.org/docs/api-reference/next.config.js/redirects#header-cookie-and-query-matching Now you can do some matching on the request cookies and header to do redirections. If you...

Related: https://blog.vulcanjs.org/lets-bring-the-jamstack-to-saas-introducing-rainbow-rendering-ad1834fe62ff The "Unicorn Architecture" is a more generic variation of "Public is the new Private" pattern, that also includes multi-tenancy in addition to solving the server-side redirection problem.

Nice example: how next-themes handles this scenario for theming: https://github.com/pacocoursey/next-themes/issues/67#issuecomment-994919398

The bug appears erratically on file "tests/vulcan-next-starter/coverage.test.ts" for example.

Wrote an article about this subject: https://blog.vulcanjs.org/how-to-set-configuration-variables-in-next-js-a81505e43dad Assigned to myself until I can reproduce the same setup as in Aplines: ability to check environment variables presence + the best possible...

Hi, for me it doesn't even work when no `package-lock.json` is not set, does it work for you with just a yarn.lock? See https://github.com/remix-run/remix/issues/683#issuecomment-1130176988 **Edit:** I got it: in a...