7 lines
93 B
TypeScript
7 lines
93 B
TypeScript
import dotenv from 'dotenv';
|
|
|
|
/**
|
|
* 读取.env环境变量配置文件
|
|
*/
|
|
dotenv.config();
|