vue cli和webpack多頁面配置

2021-08-20 07:37:36 字數 941 閱讀 9614

注:這裡使用的是vue腳手架一鍵部署

1)build檔案目錄下的webpack.base.conf.js檔案(main.js的路徑)

entry: ,
2)build檔案目錄下的webpack.dev.conf.js檔案(index.html)
new

htmlwebpackplugin(),

newhtmlwebpackplugin(),

3)build檔案目錄下的webpack.prod.conf.js檔案
new

htmlwebpackplugin(,

// necessary to consistently work with multiple chunks via commonschunkplugin

chunkssortmode: 'dependency',

}),new

htmlwebpackplugin(,

chunkssortmode: 'dependency',

}),

4)配置config資料夾下面的index.js檔案(打包輸出的檔案位置)

找到build

index: path.resolve(__dirname, '../dist/index.html'),//原**

index2: path.resolve(__dirname, '../dist/index2.html')//新增的第二個頁面

5)另乙個頁面的檔案位置問題及其他問題

1:index2.html放在index.html同級

​ 1-1:index2裡面的**注意項

<

div>

div>

3:main2.js放在main.js同級

​ 3-1:main2.js裡面的**注意項

import

from

newvue()

vue cli專案webpack打包結構

每次我們拿到vue的專案,第一步都是先npm install載入其依賴,其然後是npm run dev執行這個專案,我很好奇其內部的怎樣執行的,就把這大概的流程走一走,以供參考。我們先來看一下package.json的目錄 每次當我們npm run dev的時候,其首先執行的是build webpa...

Vue CLI 基於webpack構建優化

參考vue cli 基於webpack構建優化,資源打包與資源預壓縮 yarn add filemanager webpack plugin dev d 宣告外掛程式 const filemanagerplugin require filemanager webpack plugin 外掛程式配置。...

vue cli的webpack模版專案配置解析

var chalk require chalk 定製終端字串的顏色輸出樣式 var semver require semver 語義化版本控制規範 var packageconfig require package.json var shell require shelljs 呼叫系統命令 呼叫子執...