vuepress-plugin-posts-encrypt icon indicating copy to clipboard operation
vuepress-plugin-posts-encrypt copied to clipboard

使用自定义模板template路径问题

Open Lencamo opened this issue 1 year ago • 0 comments

问题1

// .vuepress/config.js
module.exports = {
  plugins: [
    [
      'posts-encrypt',
      {
        // Here!!!
       // 这样就可以
        template: __dirname + '\\posts-encrypt\\template.html',

        // 这样写找不到路径
        // template: '/docs/.vuepress/posts-encrypt/template.html',
        // template: './posts-encrypt/template.html',
        injectConfig: {
          less: '',
          iview: true,
          animate: true
        }
         ...
      }
    ]
}

问题2

  使用自定义模板时,vue无法正常使用(即使模板内容和默认模板内容一致)。

Lencamo avatar Sep 01 '23 12:09 Lencamo