@@ -18,8 +18,8 @@ pipeline {
stage('Build') {
steps {
- // 构建Vue项目
- sh 'npm run build'
+ // 构建Vue项目(开发环境)
+ sh 'npm run build:dev'
}
@@ -39,4 +39,4 @@ pipeline {
cleanWs()
-}
+}