Files
story-studio/remotion/node_modules/@remotion/cli/dist/config/env-file.js
2026-02-21 10:33:18 +01:00

11 lines
357 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.getDotEnvLocation = exports.setDotEnvLocation = void 0;
let envFile = null;
const setDotEnvLocation = (file) => {
envFile = file;
};
exports.setDotEnvLocation = setDotEnvLocation;
const getDotEnvLocation = () => envFile;
exports.getDotEnvLocation = getDotEnvLocation;