- create new project with
npm create vue@latest
- build static file with
.env.ci file
the second step i have try under command:
npm run build -- --mode ci (not working)

npm run build-only -- --mode ci (working)

npm run build -- -- --mode ci (working)

from this document, i think the build script need do some change
"build": "run-p type-check \"build-only {@}\" --" change to "build": "run-p type-check \"build-only -- {@}\" --"

npm create vue@latest.env.cifilethe second step i have try under command:
npm run build -- --mode ci(not working)npm run build-only -- --mode ci(working)npm run build -- -- --mode ci(working)from this document, i think the build script need do some change
"build": "run-p type-check \"build-only {@}\" --"change to"build": "run-p type-check \"build-only -- {@}\" --"