Skip to content

Releases: honojs/vite-plugins

@hono/[email protected]

17 Feb 04:19
55e216c
Compare
Choose a tag to compare

Minor Changes

@hono/[email protected]

13 Feb 06:26
55e3abf
Compare
Choose a tag to compare

Patch Changes

@hono/[email protected]

12 Feb 07:07
a8f4742
Compare
Choose a tag to compare

Patch Changes

@hono/[email protected]

10 Feb 02:19
deea981
Compare
Choose a tag to compare

@hono/[email protected]

04 Feb 12:02
e44ff35
Compare
Choose a tag to compare

Patch Changes

@hono/[email protected]

30 Jan 19:37
70e9845
Compare
Choose a tag to compare

Minor Changes

  • #63 10a7ab5da5e61cf314cc7566ddfa53552bf3172a Thanks @marbemac! - Leverage vite error handling. To leverage this, return client errors in development like in the example below:

    honoApp.get('*', async c => {
      try {
        // react, solid, etc
        const app = await renderClientApp(<App />);
    
        return new Response(app, { headers: { 'Content-Type': 'text/html' } });
      } catch (err: any) {
        // in dev, pass the error back to the vite dev server to display in the error overlay
        if (import.meta.env.DEV) return err;
    
        throw err;
      }
    });

@hono/[email protected]

28 Jan 05:11
29ca500
Compare
Choose a tag to compare

Patch Changes

@hono/[email protected]

28 Jan 05:11
29ca500
Compare
Choose a tag to compare

Patch Changes

@hono/[email protected]

25 Jan 14:39
0d42200
Compare
Choose a tag to compare

Patch Changes

@hono/[email protected]

24 Jan 00:43
120379f
Compare
Choose a tag to compare