Jeecg-Boot 2.1.4 版本发布 (新版问题修复)

This commit is contained in:
zhangdaiscott
2020-02-25 14:52:29 +08:00
parent 329802494f
commit bc79180ec7
6 changed files with 35 additions and 18 deletions

View File

@ -30,6 +30,14 @@ module.exports = {
.set('@comp', resolve('src/components'))
.set('@views', resolve('src/views'))
.set('@layout', resolve('src/layout'))
// 配置 webpack 识别 markdown 为普通的文件
config.module
.rule('markdown')
.test(/\.md$/)
.use()
.loader('file-loader')
.end()
},
css: {