fix:generate-sitemap

This commit is contained in:
zyronon
2025-08-20 00:23:37 +08:00
parent f78624799d
commit 6c4bfb4ec3
16 changed files with 3389 additions and 2904 deletions

View File

@@ -19,13 +19,17 @@ export const routes: RouteRecordRaw[] = [
redirect: '/word',
children: [
// {path: 'home', component: HomeIndex},
{path: 'word', component: WordHomePage},
{path: 'words', component: WordHomePage},
{path: 'word', redirect: '/words'},
{path: 'dict-list', component: DictList},
{path: 'study-word/:id', component: StudyWord},
{path: 'practice-words/:id', component: StudyWord},
{path: 'study-word', redirect: '/word'},
{path: 'dict-detail', component: DictDetail},
{path: 'article', component: ArticleHomePage},
{path: 'study-article/:id', component: StudyArticle},
{path: 'articles', component: ArticleHomePage},
{path: 'article', redirect: '/articles'},
{path: 'practice-articles/:id', component: StudyArticle},
{path: 'study-article', redirect: '/article'},
{path: 'book-detail', component: BookDetail},
{path: 'book-list', component: BookList},
{path: 'edit-article', component: () => import("@/pages/pc/article/EditArticlePage.vue")},