mirror of
https://github.com/whitechi73/OpenShamrock.git
synced 2024-08-14 13:12:17 +08:00
27 lines
505 B
TypeScript
27 lines
505 B
TypeScript
import { defineUserConfig } from 'vuepress'
|
|
import { searchProPlugin } from 'vuepress-plugin-search-pro'
|
|
import theme from './config/theme'
|
|
|
|
export default defineUserConfig({
|
|
base: '/Shamrock/',
|
|
title: 'Shamrock',
|
|
lang: 'zh-CN',
|
|
port: 1421,
|
|
head: [
|
|
[
|
|
'meta',
|
|
{
|
|
name: 'viewport',
|
|
content: 'width=device-width,initial-scale=1,user-scalable=no'
|
|
}
|
|
]
|
|
],
|
|
theme,
|
|
plugins: [
|
|
searchProPlugin({
|
|
indexContent: true,
|
|
hotKeys: []
|
|
})
|
|
]
|
|
})
|