node构建提示node版本太低
问题
required: { node: '^20.19.0 || >=22.12.0' },
解决
It looks like you're referencing a version requirement for Node.js in a package's configuration, possibly in the `engines` field in `package.json`.
This specifies that the project requires Node.js to be at least version `20.19.0` or any version `>=22.12.0`. The `||` means an OR condition, so Node.js versions `20.19.0` and higher, as well as versions from `22.12.0` and up, are valid.