mirror of https://github.com/vuejs/vitepress
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
325 B
20 lines
325 B
import { defineConfig } from 'vitepress'
|
|
import locales from './locales'
|
|
|
|
export default defineConfig({
|
|
title: 'VitePress',
|
|
|
|
lastUpdated: true,
|
|
cleanUrls: true,
|
|
|
|
head: [['meta', { name: 'theme-color', content: '#3c8772' }]],
|
|
|
|
markdown: {
|
|
headers: {
|
|
level: [0, 0]
|
|
}
|
|
},
|
|
|
|
locales: locales.locales
|
|
})
|