vuepress-plugin-comment
Version:
Comment plugin in vuepress, such as Gitalk, Valine...
13 lines (12 loc) • 342 B
JavaScript
const path = require('path')
module.exports = (opts, ctx) => {
return {
define: {
COMMENT_CHOOSEN: opts.choosen || 'gitalk',
COMMENT_OPTIONS: opts.options || {},
COMMENT_CONTAINER: opts.container || 'main.page'
},
enhanceAppFiles: path.resolve(__dirname, 'comment.js'),
globalUIComponents: 'Comment'
}
}