Skip to content

Commit b2237f5

Browse files
committed
remove console.log from client build
1 parent 6b33010 commit b2237f5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

playground/h3/src/main.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ const routes = [
2626

2727
export default vueSSR(App, { routes }, async ({ event }) => {
2828
if (import.meta.env.SSR) {
29-
console.log(getRequestURL(event))
30-
}
29+
console.log(getRequestURL(event!))
3130

32-
console.log(event)
31+
console.log(event)
32+
}
3333
})

0 commit comments

Comments
 (0)