UNPKG
@jdlinker/utils
Version:
latest (3.2.5)
3.2.5
3.1.5
3.0.8
3.0.7
3.0.3
3.0.2
3.0.0
1.0.2
1.0.1
1.0.0
jdLinker 工具库
@jdlinker/utils
/
src
/
getConfigFileName.ts
8 lines
(7 loc)
•
244 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
/** * 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
,
''
); };