首先我們需要安裝一個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文件

大數(shù)據(jù)培訓(xùn),云培訓(xùn),數(shù)據(jù)挖掘培訓(xùn),云計算培訓(xùn),高端軟件開發(fā)培訓(xùn),項目經(jīng)理培訓(xùn)

const path=require('path');
const HtmlWebpackPlugin=require('html-webpack-plugin');

const PATHS={
  app:path.join(__dirname,&#
        
		

網(wǎng)友評論