From f0064bb3ca1e518b8157da9151f1c3168672a36c Mon Sep 17 00:00:00 2001 From: hezhengao Date: Thu, 23 May 2024 16:05:47 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8A=E4=BC=A0=E6=96=87=E4=BB=B6=E8=87=B3?= =?UTF-8?q?=20/?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development | 11 +++++++++++ .env.production | 14 ++++++++++++++ .gitignore | 23 +++++++++++++++++++++++ babel.config.js | 5 +++++ jsconfig.json | 19 +++++++++++++++++++ 5 files changed, 72 insertions(+) create mode 100644 .env.development create mode 100644 .env.production create mode 100644 .gitignore create mode 100644 babel.config.js create mode 100644 jsconfig.json diff --git a/.env.development b/.env.development new file mode 100644 index 0000000..16e6784 --- /dev/null +++ b/.env.development @@ -0,0 +1,11 @@ +# just a flag +ENV = 'development' + +# # # # base api +VUE_APP_BASE_API = 'https://hr.fygroup.com:52100' +# VUE_APP_BASE_APII = 'https://hr.fygroup.com:52100' + +# VUE_APP_BASE_API = 'https://hr.fygroup.com:5210' +# VUE_APP_BASE_APII = 'https://hr.fygroup.com:5210' +# VUE_APP_BASE_API = 'http://47.101.195.94:2100' + diff --git a/.env.production b/.env.production new file mode 100644 index 0000000..5554996 --- /dev/null +++ b/.env.production @@ -0,0 +1,14 @@ +# just a flag +ENV = 'production' + +# base api +# base api +VUE_APP_BASE_API = 'https://hr.fygroup.com:52100' +# VUE_APP_BASE_APII = 'https://hr.fygroup.com:52100' + +# VUE_APP_BASE_API = 'https://hr.fygroup.com:5210' +# VUE_APP_BASE_APII = 'https://hr.fygroup.com:5210' +# VUE_APP_BASE_API = 'http://47.101.195.94:2100' +# + + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..403adbc --- /dev/null +++ b/.gitignore @@ -0,0 +1,23 @@ +.DS_Store +node_modules +/dist + + +# local env files +.env.local +.env.*.local + +# Log files +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* + +# Editor directories and files +.idea +.vscode +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/babel.config.js b/babel.config.js new file mode 100644 index 0000000..e955840 --- /dev/null +++ b/babel.config.js @@ -0,0 +1,5 @@ +module.exports = { + presets: [ + '@vue/cli-plugin-babel/preset' + ] +} diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 0000000..4aafc5f --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "target": "es5", + "module": "esnext", + "baseUrl": "./", + "moduleResolution": "node", + "paths": { + "@/*": [ + "src/*" + ] + }, + "lib": [ + "esnext", + "dom", + "dom.iterable", + "scripthost" + ] + } +}