UNPKG
create-iking-admin
Version:
latest (3.3.2)
3.3.2
3.3.1
3.3.0
3.2.2
3.2.1
3.2.0
3.1.11
3.1.10
3.1.9
3.1.8
3.1.7
3.1.5
3.1.5-1
3.1.4
3.1.3
3.1.2
3.1.1
3.1.0
3.0.9
3.0.8
3.0.7
3.0.6
3.0.5
3.0.4
3.0.3
3.0.2
3.0.1
3.0.0
2.0.11
2.0.10
2.0.9
2.0.8
2.0.7
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.1.1
1.1.0
1.0.9
1.0.8
1.0.7
1.0.6
金合技术中台脚手架
gitee.com/ikingtech
create-iking-admin
/
template-micro
/
iking-main-admin
/
build
/
getConfigFileName.ts
10 lines
(9 loc)
•
263 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
/** * Get the configuration file variable name *
@param
env
*/
export
const
getConfigFileName
= (
env
:
Record
<
string
,
any
>
) => {
return
`__PRODUCTION__
${env.VITE_GLOB_APP_SHORT_NAME ||
'__APP'
}
__CONF__`
.
toUpperCase
() .
replace
(
/\s/g
,
''
); };