Files
cocos-docs/@config/shared-theme-en.ts
2024-05-23 10:28:00 +08:00

23 lines
522 B
TypeScript

import { defineConfig } from 'vitepress'
import { github, branch } from './config'
export default function(version: string) {
return defineConfig({
lang: 'en-US',
description: 'Cocos Creator Docs',
themeConfig: {
editLink: {
pattern: `${github}/edit/${branch}/versions/${version}/:path`,
text: 'Edit this page on GitHub'
},
footer: {
message: 'Released under the MIT License.',
copyright: 'Copyright © 2019-present Cocos'
}
}
})
}