5 lines
176 B
TypeScript
5 lines
176 B
TypeScript
export const getInitialWorkingDir = (): string => {
|
|
// Fall back to initial config from app startup
|
|
return (window.appConfig?.get('GOOSE_WORKING_DIR') as string) ?? '';
|
|
};
|