Skip to content

Commit 2125663

Browse files
committed
fix imports
1 parent 0e7ea67 commit 2125663

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

packages/start/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// @refresh skip
2-
export { default as clientOnly } from "./shared/clientOnly";
2+
export { default as clientOnly } from "./shared/clientOnly.js";

packages/start/src/server/routes.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
import { createRouter } from "radix3";
22
// @ts-expect-error
33
import fileRoutes from "solid-start:routes";
4-
import { FetchEvent } from "./types";
4+
5+
import { FetchEvent } from "./types.js";
56

67
interface Route {
78
path: string;

0 commit comments

Comments
 (0)