"npm run dev " fails
Try to make a project using cloudflare with postgres as db.
this boiler plate code is showing "An error has occurred"
this boiler plate code is showing "An error has occurred"

import { Hono } from 'hono'
import { sign, verify } from 'hono/jwt'
import { getPrisma } from '../prismaFunction'
// Create the main Hono app
const app = new Hono()
app.get('/', (c) => {
// Now you can use it wherever you want
try {
return c.text("hello world")
} catch (error) {
console.log(error)
}
})