Kricsleo
Kricsleo
This might not be an issue with `reka-ui`. `HeadlessUI` intercepts the `keydown` event and [performs `event.preventDefault()`](https://github.com/tailwindlabs/headlessui/blob/main/packages/%40headlessui-vue/src/components/dialog/dialog.ts#L259) for the `escape` keydown event. Consequently, `reka-ui` always checks if the `escape` event is...
Sorry, the reproduction example doesn't seem available anymore. Could you please provide another minimal reproduction?
> Be logged to the console (definitely) I think this is an improvement for the DX 👍 For now, you can catch potential errors with this: ```ts nitroApp.hooks.hook('error', error =>...
Tests added 😁
@IlyaSemenov Do you have any plans to work on this? If not, I'd be happy to fix it ❤️
`.env` variables are always interpreted as strings (FYI: https://nodejs.org/docs/latest/api/environment_variables.html#variable-values)
> I guess that depends on what library is used to parse the env file It's [dotenv](https://github.com/motdotla/dotenv?tab=readme-ov-file#what-rules-does-the-parsing-engine-follow).
Have you considered the [h3 - middleware](https://h3.dev/guide/basics/middleware), is it flexible enough to integrate tRPC/MQTT, similar to how [oRPC - H3 Adapter](https://orpc.unnoq.com/docs/adapters/h3) does? 🤔
My bad 🤣, now it works.
You can try this. ```ts import { defineBuildConfig } from "unbuild"; export default defineBuildConfig({ entries: [ { input: "src/", globOptions: { // try this ↓↓ ignore: ['**/*.(spec|test).ts'], } }, ],...