Skip to content

Commit

Permalink
chore: fix ts
Browse files Browse the repository at this point in the history
  • Loading branch information
yjl9903 committed Oct 1, 2024
1 parent f23bd67 commit 0dcd9d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/frontend/web/cloudflare/entry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { remix } from './remix';

export const app = new Hono<{ Bindings: Bindings }>();

app.all('*', remix({ build, manifest: __STATIC_CONTENT_MANIFEST }));
app.all('*', remix({ build: build as any, manifest: __STATIC_CONTENT_MANIFEST }));

app.all('/api/*', api());

Expand Down
2 changes: 1 addition & 1 deletion apps/frontend/web/node/entry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { remix } from './remix';

export const app = new Hono<{ Bindings: Bindings }>();

app.all('*', remix({ build }));
app.all('*', remix({ build: build as any }));

app.all('/api/*', api());

Expand Down

0 comments on commit 0dcd9d6

Please sign in to comment.