We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf33953 commit 101d0b9Copy full SHA for 101d0b9
src/containers/action/ActionRunnerContainer.ts
@@ -381,7 +381,7 @@ export class ActionRunnerContainer extends Container {
381
break;
382
case 'internal/export_preview':
383
{
384
- const previewOutput = `${process.env.VOLUME_PREVIEW}/${driveId}/_manual`;
+ const previewOutput = `${process.env.VOLUME_PREVIEW}/${driveId}` + (this.userConfigService.config.hugo_theme?.id ? `/${this.userConfigService.config.hugo_theme?.id}` : '/_manual');
385
await container.export('/site/public', previewOutput);
386
}
387
0 commit comments