webpack 多entry 配置
Posted rongfengliang-荣锋亮
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了webpack 多entry 配置相关的知识,希望对你有一定的参考价值。
// webpack 多entry 配置
var path = require(‘path‘); module.exports = { entry: { entry2: ‘./entry.js‘, demo2: ‘./demo.js‘ }, output: { path: __dirname, filename: ‘[name].js‘ } };
以上是关于webpack 多entry 配置的主要内容,如果未能解决你的问题,请参考以下文章