commit f0064bb3ca1e518b8157da9151f1c3168672a36c Author: hezhengao Date: Thu May 23 16:05:47 2024 +0800 上传文件至 / 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" + ] + } +}