canonical plugin for vuepress
Add <link rel='canonical' ...>
to your vuepress site.
npm i vuepress-plugin-canonical -D
Read How to use vuepress Plugin first, modify your .vuepress/config.js
.
module.exports = {
plugins: [
[
'vuepress-plugin-canonical',
{
baseURL: 'https://mina.wiki', // base url for your canonical link, optional, default: ''
stripExtension: true // strip '.html' , optional, default: false
}
]
]
}