调整启动命令适配node高版本

This commit is contained in:
wangchengming 2025-10-16 15:07:47 +08:00
parent 8f77a15411
commit 063312b5a6

View File

@ -5,8 +5,8 @@
"author": "LionLi",
"license": "MIT",
"scripts": {
"dev": "vue-cli-service serve",
"build:prod": "vue-cli-service build",
"dev": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve",
"build:prod": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service build",
"preview": "node build/index.js --preview",
"lint": "eslint --ext .js,.vue src"
},