config.ts 508 B

12345678910111213141516171819202122232425
  1. import { defineConfig } from 'vitepress'
  2. import { en } from './en'
  3. import { zh } from './zh'
  4. // https://vitepress.dev/reference/site-config
  5. export default defineConfig({
  6. title: "Chinese Days",
  7. head: [
  8. ['link', { rel: 'icon', type: 'image/png', href: '/icon.png' }],
  9. ],
  10. rewrites: {
  11. 'zh/:rest*': ':rest*'
  12. },
  13. themeConfig: {
  14. logo: { src: '/icon.png', width: 24, height: 24 },
  15. },
  16. locales: {
  17. root: { label: '简体中文', ...zh },
  18. en: { label: 'English', ...en },
  19. },
  20. })