webpack.03-打包js同時生成html頁面

新建空文件夾:cmdhtml

npm init -y
cnpm i -D webpack webpack-cli

文件夾和文件webpack

src(文件夾)web

index.html
<script src="test.js">
test.js
console.log(123)
安裝插件(生成html):HtmlWebpackPlugin------> https://webpack.js.org/plugins/html-webpack-plugin/
cnpm install --save-dev html-webpack-plugin
webpack.config.js
varHtmlWebpackPlugin\=require('html-webpack-plugin');

module.exports\= {

entry: './src/main.js',

plugins: \[newHtmlWebpackPlugin()\]

};
運行打包命令:
webpack src/test.js

生成文件夾和文件npm

dist(文件夾)ui

index.html
main.js

未完待續...插件

相關文章
相關標籤/搜索