如果您在项目中直接使用 h3
作为依赖项:
json
{
"dependencies": {
"h3": "npm:h3-nightly@latest"
}
}
如果您使用的框架(例如 Nuxt 或 Nitro)使用 h3
:
pnpm 和 yarn:
json
{
"resolutions": {
"h3": "npm:h3-nightly@latest"
}
}
npm:
json
{
"overrides": {
"h3": "npm:h3-nightly@latest"
}
}
注意: 重新安装后,请务必重新创建 lockfile 和 node_modules
,以避免出现提升问题。