Files
doodle-mini/miniprogram/supportPages/unreleasedDebug/unreleasedDebug.config.ts
T
2026-06-11 14:39:06 +08:00

23 lines
558 B
TypeScript

export interface UnreleasedPageEntry {
id: string;
title: string;
subtitle: string;
path: string;
}
export const UNRELEASED_PAGE_ENTRIES: UnreleasedPageEntry[] = [
// 在这里手动添加未上线页面
{
id: 'pen-control-sheet',
title: '控笔',
subtitle: '控笔练习',
path: '/chinesePages/penControlSheet/penControlSheet',
},
{
id: 'word-test-sheet',
title: '测字表',
subtitle: '测字表',
path: '/chinesePages/wordTestSheet/wordTestSheet',
},
];