From 47453faf770f4562a846daea53f785b09eaad69b Mon Sep 17 00:00:00 2001 From: ALEX <2604434353@qq.com> Date: Wed, 16 Jul 2025 09:11:43 +0800 Subject: [PATCH] midify the Jenkinsfile --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2f76b6d..0dc35e5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -19,9 +19,9 @@ pipeline { stage('Install & Build') { steps { sh ''' - rm -rf dist - npm install - npx vue-cli-service build + rm -rf dist node_modules package-lock.json + npm install --legacy-peer-deps + ./node_modules/.bin/vue-cli-service build ''' } }