webpack 创建项目过程中遇到的问题和解决方法
Posted 凉梁凉糕
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了webpack 创建项目过程中遇到的问题和解决方法相关的知识,希望对你有一定的参考价值。
1 webpack实现多个输入输出多个html
entry:{ main: ‘./src/main.js‘, login: ‘./src/login.js‘ }, plugins: [ new HtmlWebpackPlugin({ filename: ‘index.html‘, template: ‘./src/index.html‘, chunks: [‘main‘] //将main.js插入到index.html内部, }), new HtmlWebpackPlugin({ filename: ‘login.html‘, template: ‘./src/login.html‘, chunks: [‘login‘] }) ],
以上是关于webpack 创建项目过程中遇到的问题和解决方法的主要内容,如果未能解决你的问题,请参考以下文章
mybatis学习笔记 -- maven+spring+mybatis从零开始搭建整合详细过程(附demo和搭建过程遇到的问题解决方法)
解决webpack因新版本打包失败问题--ERROR in multi ./src/main.js ./dist/bundle.js