1 Star 0 Fork 0

紫衣小生/html-public

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
webpack.config.js.bak 874 Bytes
一键复制 编辑 原始数据 按行查看 历史
super 提交于 2021-05-19 18:40 . feat(): ts相关内容的学习
/**
*
* 重要事件
*
* 这个文件没有生效
*
* 是另一个 多入口 的配置方案的 分享
*
*/
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin')
module.exports = {
entry: {
public1: './src/index1.ts',
public2: './src/index2.ts'
},
devtool: 'inline-source-map',
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/
}
]
},
resolve: {
extensions: ['.tsx', '.ts', '.js']
},
output: {
filename: '[name].js',
path: path.resolve(__dirname, 'dist')
},
plugins: [
new HtmlWebpackPlugin({
template: 'src/www/public1/index.html',
filename: 'public1/index.html',
}),
new HtmlWebpackPlugin({
template: 'src/www/public2/index.html',
filename: 'public2/index.html',
}),
]
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/purplechildren/html-public.git
[email protected]:purplechildren/html-public.git
purplechildren
html-public
html-public
master

搜索帮助