From 4e3c6688aa57ab15d516ed3f5bdbd58d9b16770c Mon Sep 17 00:00:00 2001 From: lipengbo Date: Thu, 27 Apr 2023 11:26:20 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A7=A3=E5=86=B3Node.js=E5=8D=87=E7=BA=A7?= =?UTF-8?q?=E5=88=B018=20=E6=8A=A5=20digital=20envelope=20routines::unsupp?= =?UTF-8?q?orted=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/.gitignore | 5 +++++ .idea/inspectionProfiles/Project_Default.xml | 6 ++++++ .idea/modules.xml | 8 ++++++++ .idea/source-vue-ui.iml | 12 ++++++++++++ .idea/vcs.xml | 6 ++++++ source-ui/package.json | 4 ++-- 6 files changed, 39 insertions(+), 2 deletions(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/inspectionProfiles/Project_Default.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/source-vue-ui.iml create mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..b58b603 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,5 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..03d9549 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..e193380 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/source-vue-ui.iml b/.idea/source-vue-ui.iml new file mode 100644 index 0000000..24643cc --- /dev/null +++ b/.idea/source-vue-ui.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/source-ui/package.json b/source-ui/package.json index fdc68e2..3215a2e 100644 --- a/source-ui/package.json +++ b/source-ui/package.json @@ -5,8 +5,8 @@ "author": "詹Sir", "license": "MIT", "scripts": { - "dev": "vue-cli-service serve", - "build": "vue-cli-service build", + "dev": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve", + "build": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service build", "preview": "node build/index.js --preview", "lint": "eslint --ext .js,.vue src" }, -- Gitee