如何在with或其他包上配置.env
文件以从全局访问?loopback 4
dotenv
process.env.VAR
我尝试继续,application.ts
但它给出了undefined
.
import * as dotenv from 'dotenv';
...
export class MyApp extends .... {
constructor (...);
....
dotenv.config();
....
}
我也加入.env
了root
,/src
但没有成功。