mirror of
https://github.com/antd-tiny-vue/antd-tiny-vue.git
synced 2024-11-10 09:39:15 +08:00
10 lines
349 B
TypeScript
10 lines
349 B
TypeScript
export const getRewrites = (): Record<string, string> => {
|
|
return {
|
|
'site/index.md': 'index.md',
|
|
'site/index.zh-CN.md': 'zh-CN/index.md',
|
|
'site/components/index.md': 'components/index.md',
|
|
'site/components/index.zh-CN.md': 'zh-CN/components/index.md',
|
|
'components/:comp/index.zh-CN.md': 'zh-CN/components/:comp/index.md'
|
|
}
|
|
}
|