webpack入口文件会打包成bundle.js
例子:main.js是单入口文件
// main.js
document.write('<h1>Hello World</h1>');
index.html
<script src="./dist//bundle.js"></script>
webpack.config.js
/* webpack.config.js */
module.exports = {
entry : './main.js',
output : {
filename : 'bundle.js'
}
};
webpack