38 lines
959 B
TypeScript
38 lines
959 B
TypeScript
// src/router/routes.ts
|
|
export function getStaticRoutes() { return [
|
|
{
|
|
path: '/',
|
|
name: '学习中的鹅',
|
|
changefreq: 'daily',
|
|
priority: 1.0,
|
|
}, {
|
|
path: '/tools',
|
|
name: '工具箱',
|
|
changefreq: 'daily',
|
|
priority: 0.8,
|
|
}, {
|
|
path: '/tools/image-converter',
|
|
name: '在线图片压缩工具',
|
|
changefreq: 'daily',
|
|
priority: 0.7,
|
|
}, {
|
|
path: '/tools/qing-audio',
|
|
name: '清朝音质生成器',
|
|
changefreq: 'daily',
|
|
priority: 0.7,
|
|
}, {
|
|
path: '/tools/desktop-engine',
|
|
name: '桌面引擎壁纸',
|
|
changefreq: 'daily',
|
|
priority: 0.7,
|
|
}, {
|
|
path: '/blogs',
|
|
name: '文章',
|
|
changefreq: 'daily',
|
|
priority: 0.9,
|
|
},
|
|
|
|
];
|
|
}
|
|
|