mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-25 00:07:47 +01:00
6 lines
149 B
TypeScript
6 lines
149 B
TypeScript
|
import path from 'path';
|
||
|
|
||
|
export const findPublicFolder = (): string => {
|
||
|
return path.join(__dirname, '..', '..', '..', 'frontend', 'build');
|
||
|
};
|