Closed
Description
- I confirm that this is an issue rather than a question.
Bug report
Steps to reproduce
有两个md,一个是英文内容,一个是中文内容
What is expected?
md中有中文也能搜索
What is actually happening?
英文的能被搜索到,中文的不能被搜索到
Other relevant information
config.js
module.exports = {
title: '标题',
description: '测试项目',
base: '/vuepress/',
configureWebpack: {
resolve: {
alias: {
'@alias': './assets/'
}
}
},
dest: './dist',
themeConfig: {
nav: [
{ text: 'Home', link: '/' },
{ text: 'Blog', link: '/blog/' },
{ text: 'About', link: '/about/' },
],
sidebar: [
{
title: 'Blog',
collapsable: false,
children: [
'/blog/',
'/blog/first'
]
}
],
sidebarDepth: 3
}
}