vite 创建项目报错 crypto.hash is not a function

384 阅读1分钟

今天创建 vue3 项目 发现报错了 crypto.hash is not a function

一开始以为是不是 node 没有切换到 18,但是检查了下已经切换到18了

排查之后发现 这个 crypto.hash 需要 使用 node 20.12.0以上 或者 node 21.7.0 以上 才能支持,可以用 nvm 切换到 node 20.12.0以上 或者 node 21.7.0 以上

image.png

[参考文档]

node18:nodejs.cn/api/v18/cry…

node20:nodejs.cn/api/v20/cry…