fix(server-build): füge .js-Erweiterungen zu allen relativen Imports hinzu für ESNext-Module-Kompatibilität

This commit is contained in:
2025-10-01 22:17:23 +02:00
parent c6c1455612
commit 74f55486bc
5 changed files with 13 additions and 13 deletions

View File

@@ -1,6 +1,6 @@
import { RPCHandler } from "@orpc/server/fetch";
import { router } from "../rpc";
import { router } from "../rpc/index.js";
import { Hono } from "hono";
export const rpcApp = new Hono();