Fix env.js to allow bumping dotenv-expand

This commit is contained in:
Ralf Haferkamp
2023-08-28 12:56:21 +02:00
committed by Ralf Haferkamp
parent 061ef1901a
commit 143b55675c
+1 -1
View File
@@ -32,7 +32,7 @@ const dotenvFiles = [
// https://github.com/motdotla/dotenv-expand
dotenvFiles.forEach(dotenvFile => {
if (fs.existsSync(dotenvFile)) {
require('dotenv-expand')(
require('dotenv-expand').expand(
require('dotenv').config({
path: dotenvFile,
})