ryu
ryu
It will work if I change `group()` to `basePath()` from the code you suggested. ```diff ts const app = new Hono() - const bookStore = app.group('/book_store') + const bookStore =...
Thank you, @yusukebe! Allow me to comment on just two points. 1. FOUC(flash of unstyled content) I save files or reload a screen every time, a flicker occurs on dev...
@emmanuelchucks I prefer it to the current config. I currently use that config, but in the future I would like to configure it only with the import syntax. Thank you!
@yusukebe You are right. I often use `yarn` in Hono. To be accurate, we use Bun in `test:all`. So when I run it, I use `yarn` instead. ```diff -"test:all": "bun...
Thank you for your consideration. > Or we can use $npm_execpath or %npm_execpath%? This works on WSL and Windows. However, using `$npm_execpath` directly does not support Windows. Therefore, the script...
@sor4chi Thank you for the tip. I thought I had tested in the past with paths other than `mnt/*`. But I just tried it again and it was fastest even...
@yusukebe Here's example. I'm using PostCSS. https://github.com/ryuapp/honox-tailwind-template/tree/import-css In this example, FOUT will occur on every reload.
To fix this, we need to modify home layout. Therefore, it's best to fix this issue at the same time as we change the landing page. I think it's difficult...
@yusukebe That's right. I don't like waiting for cloning the template while my selecting.
Hello @WrathZA This seems to be a bug from Deno 1.42.0. It works in version 1.41.2. ```sh deno upgrade --version 1.41.2 ``` I also use Windows, so I don't know...