首先我們需要安裝一個webpack插件html-webpack-plugin,該插件的作用是幫助我們生成創(chuàng)建html入口文件。執(zhí)行如下命令
npm install html-webpack-plugin --save-dev
在項目app目錄下建立component.js文件,寫入如下代碼
export default (text='hello world')=>{ const element=document.createElement('div'); element.innerHTML=text; return element; }
在根目錄下創(chuàng)建webpack.config.js文件
const path=require('path'); const HtmlWebpackPlugin=require('html-webpack-plugin'); const PATHS={ app:path.join(__dirname,