chore(pockethost): fix instance app path

This commit is contained in:
Ben Allfree 2024-06-05 15:33:15 -07:00
parent 5f2d82f131
commit b3c9fea3a8

View File

@ -49,7 +49,7 @@ export const _MOTHERSHIP_APP_ROOT = (...paths: string[]) =>
export const _INSTANCE_APP_ROOT = (...paths: string[]) =>
join(
process.env.PH_INSTANCE_APP_ROOT || join(__dirname, 'mothership-app'),
process.env.PH_INSTANCE_APP_ROOT || join(__dirname, 'instance-app'),
...paths,
)