Skip to content

Commit f6c06f4

Browse files
committed
add server entriers to reproduce
1 parent 2bb29e3 commit f6c06f4

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

examples/qwik/routes/test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export default () => "Test route works!";

examples/qwik/server.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
export default {
2+
fetch: (req: Request) => {
3+
console.log(`[${req.method}] ${req.url}`);
4+
},
5+
};

0 commit comments

Comments
 (0)