Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Vercel node issue: Cannot find module #137

Open
winddpan opened this issue Feb 1, 2024 · 1 comment
Open

Vercel node issue: Cannot find module #137

winddpan opened this issue Feb 1, 2024 · 1 comment

Comments

@winddpan
Copy link

winddpan commented Feb 1, 2024

// api/app_const.ts

export const AppConst = {
  key: "123",
}
// api/index.ts

import { Hono } from "hono"
import { handle } from "@hono/node-server/vercel"
import { AppConst } from "./app_const"

const app = new Hono().basePath("/api")

app.get("/", (c) => {
  return c.json({ message: AppConst.key })
})

export default handle(app)

already added "type": "module" in package.json

When I vist http://localhost:3000/api

Error: Cannot find module '/Users/wp/development/hono-test/src/app_const' imported from /Users/wp/development/hono-test/api/index.ts

When I modify import { handle } from "import { AppConst } from "./app_const" to import { AppConst } from "./app_const.js" the error is gone.

I wonder how can I import module without .js suffix.

By the way: when I use edge runtime, did not have this issue.

@yusukebe
Copy link
Member

yusukebe commented Feb 1, 2024

Maybe duplicated to #84

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants