Robert Soriano

Results 186 comments of Robert Soriano

It uses https://github.com/steveruizok/perfect-freehand so I believe adaptive pressure from pencil is supported :)

Do you mean "detecting whether an apple pencil is used?" ?

That's interesting. I'm keeping this open til I come up with an idea of how to do it.

This feature would really be great. I think module options don't accept `Map` as well.

I'll test this locally. Thanks!

`.css.ts` is working fine on my end with latest vite version. Try this in your vite config ```ts export default defineConfig({ assetsInclude: ['**/*.png'], ... }) ```

Here's a small util to convert a Vue component to a satori-friendly VDOM - https://github.com/wobsoriano/v-satori

@heychazza , for now only js/ts files can be imported. Still working on SFC Imports. Updated the README.

Adding a callback like feature would be easy as this: ```ts class Bao { listen(options: IListen = {}, cb?: () => void): Server { const server = Bun.serve(this.#serve(options)); cb?.() return...