1.0.0 • Published 5 years ago

vuepress-plugin-canonical v1.0.0

Weekly downloads
331
License
MIT
Repository
-
Last release
5 years ago

vuepress-plugin-canonical

canonical plugin for vuepress

Add <link rel='canonical' ...> to your vuepress site.

Install

npm i vuepress-plugin-canonical -D

Usage

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
      }
    ]
  ]
}

Refrences