加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.config.js 2.01 KB
一键复制 编辑 原始数据 按行查看 历史
wangbin3162 提交于 2019-12-10 17:24 . 更新文档地址
const markdownRender = require('markdown-it')()
module.exports = {
publicPath: process.env.NODE_ENV === 'production' ? '' : '/',
outputDir: 'docs',
productionSourceMap: false,
// 修改 pages 入口
pages: {
index: {
entry: 'examples/main.js',
template: 'public/index.html', // 模板
filename: 'index.html' // 输出文件
}
},
// 扩展 webpack 配置
chainWebpack: config => {
// 把 packages 和 examples 加入编译,因为新增的文件默认是不被 webpack 处理的
config.module
.rule('js')
.include
.add('/src')
.add('/examples')
.end()
.use('babel')
.loader('babel-loader')
.tap(options => {
// 修改它的选项...
return options
})
config.module.rule('md')
.test(/\.md/)
.use('vue-loader')
.loader('vue-loader')
.end()
.use('vue-markdown-loader')
.loader('vue-markdown-loader/lib/markdown-compiler')
.options({
raw: true,
use: [
[require('markdown-it-container'), 'demo', {
validate (params) {
return params.trim().match(/^demo\s*(.*)$/)
},
render: function (tokens, idx) {
const m = tokens[idx].info.trim().match(/^demo\s*(.*)$/)
if (tokens[idx].nesting === 1) {
const description = m && m.length > 1 ? m[1] : ''
const content = tokens[idx + 1].type === 'fence' ? tokens[idx + 1].content : ''
let descriptionHTML = description ? markdownRender.render(description) : ''
// 2.使用自定义开发组件【DemoBlock】来包裹内容并且渲染成案例和代码示例
return `<demo-block>
<div slot="source">${content}</div>
${descriptionHTML}
<div slot="highlight">`
} else {
return '</div></demo-block>\n'
}
}
}]
]
})
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化