unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
8 lines • 321 B
JavaScript
import path from 'path';
import { fileURLToPath } from 'node:url';
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
export const findPublicFolder = () => {
return path.join(__dirname, '..', '..', '..', 'frontend', 'build');
};
//# sourceMappingURL=findPublicFolder.js.map