1 Star 0 Fork 1

大右右/webpack-my-markdonw-loader

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
webpack.config.js 873 Bytes
一键复制 编辑 原始数据 按行查看 历史
wangwt04 提交于 2020-12-26 21:42 . markdown loader
const path = require('path')
const HtmlWebpackPlugin = require('html-webpack-plugin')
/** @type { import('webpack').Configuration } */
module.exports = {
mode: 'production',
entry: './src/main.js',
output: {
filename: 'bundle.js',
path: path.join(__dirname, 'output'),
},
module: {
rules: [
{
test: /\.md$/,
use: [
'html-loader', // 处理 markdown 文本转换的html, 把html打包到js文件中
'./src/markdown-loader.js' // 把 markdown 文本转换为 html
]
}
]
},
plugins: [
new HtmlWebpackPlugin({ // 以 src/index.html 为模板,生成 html 文件到output文件夹
title: 'My Markdown Loader',
template: './src/index.html'
})
]
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/big-right-right/webpack-my-markdonw-loader.git
git@gitee.com:big-right-right/webpack-my-markdonw-loader.git
big-right-right
webpack-my-markdonw-loader
webpack-my-markdonw-loader
master

搜索帮助