mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-08 15:22:43 +08:00
14 lines
275 B
JavaScript
14 lines
275 B
JavaScript
![]() |
(function () {
|
||
|
const dotenvExpand = require('./lib/main').expand
|
||
|
|
||
|
const env = require('dotenv').config(
|
||
|
Object.assign(
|
||
|
{},
|
||
|
require('dotenv/lib/env-options'),
|
||
|
require('dotenv/lib/cli-options')(process.argv)
|
||
|
)
|
||
|
)
|
||
|
|
||
|
return dotenvExpand(env)
|
||
|
})()
|