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

13 lines
500 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.getBrowserExecutable = exports.setBrowserExecutable = void 0;
let currentBrowserExecutablePath = null;
const setBrowserExecutable = (newBrowserExecutablePath) => {
currentBrowserExecutablePath = newBrowserExecutablePath;
};
exports.setBrowserExecutable = setBrowserExecutable;
const getBrowserExecutable = () => {
return currentBrowserExecutablePath;
};
exports.getBrowserExecutable = getBrowserExecutable;