Browse Source

fix: bump the minimal node requirement to fix eslint fail (#17938)

tags/1.3.0
CorrectRoad 6 months ago
parent
commit
9bd8e62702
No account linked to committer's email address
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      web/README.md
  2. 1
    1
      web/package.json

+ 1
- 1
web/README.md View File

### Run by source code ### Run by source code


Before starting the web frontend service, please make sure the following environment is ready. Before starting the web frontend service, please make sure the following environment is ready.
- [Node.js](https://nodejs.org) >= v18.x
- [Node.js](https://nodejs.org) >= v22.11.x
- [pnpm](https://pnpm.io) v10.x - [pnpm](https://pnpm.io) v10.x


First, install the dependencies: First, install the dependencies:

+ 1
- 1
web/package.json View File

"version": "1.2.0", "version": "1.2.0",
"private": true, "private": true,
"engines": { "engines": {
"node": ">=18.18.0"
"node": ">=v22.11.0"
}, },
"scripts": { "scripts": {
"dev": "cross-env NODE_OPTIONS='--inspect' next dev", "dev": "cross-env NODE_OPTIONS='--inspect' next dev",

Loading…
Cancel
Save