Parses environment files using dotenv.
An array of paths to the environment files.
returns - The result of the dotenv configuration.
import { parseEnvFiles } from "nsuite";// Note: the first value set for a varialble will winparseEnvFiles([ path.resolve(process.cwd(), ".env.local"), path.resolve(process.cwd(), ".env"),]); Copy
import { parseEnvFiles } from "nsuite";// Note: the first value set for a varialble will winparseEnvFiles([ path.resolve(process.cwd(), ".env.local"), path.resolve(process.cwd(), ".env"),]);
Parses environment files using dotenv.