fix: add missing adminDist candidate path for client distribution

This commit is contained in:
Kyush 2026-04-08 12:30:09 +09:00
commit f97e67382b

View file

@ -43,6 +43,7 @@ export function createApp(): OpenAPIHono<AppEnv> {
const app = new OpenAPIHono<AppEnv>();
const adminDistCandidates = [
path.resolve(moduleDir, '..', '..', 'client', 'dist'),
path.resolve(moduleDir, '..', '..', '..', 'client', 'dist'),
path.resolve(moduleDir, '..', '..', '..', '..', 'client', 'dist'),
];