Gual Casas
Gual Casas
Is there anything I can do to help get this over the finish line? In a world where we already have a ton of config files in the root of...
Thank you for opening this issue. I was about to open an issue for this exact thing.
but I don't want to 🙁
I encountered this problem as well. A workaround until it gets fixed is to manually specify the env file in every command. I know it's unnecessarily laborious, but it works....
I think you can fix that with something like this: ```ts export const addNewEvent = (event: any, events: any[], maxEvents: number) => { while (events.length > maxEvents) events.shift(); return [...events,...