mirror of
https://github.com/cheveguerra/whaticket-community.git
synced 2026-04-18 11:49:19 +00:00
6 lines
113 B
TypeScript
6 lines
113 B
TypeScript
import dotenv from "dotenv";
|
|
|
|
dotenv.config({
|
|
path: process.env.NODE_ENV === "test" ? ".env.test" : ".env"
|
|
});
|