上传文件至 /

This commit is contained in:
hezhengao 2024-05-23 16:05:47 +08:00
commit f0064bb3ca
5 changed files with 72 additions and 0 deletions

11
.env.development Normal file
View File

@ -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'

14
.env.production Normal file
View File

@ -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'
#

23
.gitignore vendored Normal file
View File

@ -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?

5
babel.config.js Normal file
View File

@ -0,0 +1,5 @@
module.exports = {
presets: [
'@vue/cli-plugin-babel/preset'
]
}

19
jsconfig.json Normal file
View File

@ -0,0 +1,19 @@
{
"compilerOptions": {
"target": "es5",
"module": "esnext",
"baseUrl": "./",
"moduleResolution": "node",
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
}
}