您好,登錄后才能下訂單哦!
今天小編給大家分享一下vue-cli webpack的配置方法是什么的相關知識點,內容詳細,邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。
我們知道相對 vue
來說 vue-cli
是構建 vue
的單頁應用的腳手架,我們只需要在命令行輸入 : vue init <template-name><project-name>
從而就會自動生成項目模板,比較常用的模板有 webpack
、webpack-simple
、browserify
等模板。就拿 webpack
來說就在編程中發揮很大的作用,它使得我們的代碼塊模板話,還可以免除搭建項目的時間。
1、package.json
對于這個文件來說是用來描述 NPM這個包所有的相關信息的,對于格式的話則是嚴格的json格式,npm install 命令可以根據配置文件來增加或者減少管理本地文件的安裝包,代碼如下所示:
{
//從name到private都是package的配置信息,也就是我們在腳手架搭建中輸入的項目描述
"name": "shop",//項目名稱:不能以.(點)或者_(下劃線)開頭,不能包含大寫字母,具有明確的的含義與現有項目名字不重復
"version": "1.0.0",//項目版本號:遵循“大版本.次要版本.小版本”
"description": "A Vue.js project",//項目描述
"author": "zld",//作者名字
"private": true,//是否私有
//scripts中的子項即是我們在控制臺運行的腳本的縮寫
"scripts": {
//①webpack-dev-server:啟動了http服務器,實現實時編譯;
//inline模式會在webpack.config.js入口配置中新增webpack-dev-server/client?http://localhost:8080/的入口,使得我們訪問路徑為localhost:8080/index.html(相應的還有另外一種模式Iframe);
//progress:顯示打包的進度
"dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
"start": "npm run dev",//與npm run dev相同,直接運行開發環境
"build": "node build/build.js"//使用node運行build文件
},
//②dependencies(項目依賴庫):在安裝時使用--save則寫入到dependencies
"dependencies": {
"vue": "^2.5.2",//vue.js
"vue-router": "^3.0.1"//vue的路由插件
},
//和devDependencies(開發依賴庫):在安裝時使用--save-dev將寫入到devDependencies
"devDependencies": {
"autoprefixer": "^7.1.2",//autoprefixer作為postcss插件用來解析CSS補充前綴,例如 display: flex會補充為display:-webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex。
//babel:以下幾個babel開頭的都是針對es6解析的插件。用最新標準編寫的 JavaScript 代碼向下編譯成可以在今天隨處可用的版本
"babel-core": "^6.22.1",//babel的核心,把 js 代碼分析成 ast ,方便各個插件分析語法進行相應的處理。
"babel-helper-vue-jsx-merge-props": "^2.0.3",//預制babel-template函數,提供給vue,jsx等使用
"babel-loader": "^7.1.1",//使項目運行使用Babel和webpack來傳輸js文件,使用babel-core提供的api進行轉譯
"babel-plugin-syntax-jsx": "^6.18.0",//支持jsx
"babel-plugin-transform-runtime": "^6.22.0",//避免編譯輸出中的重復,直接編譯到build環境中
"babel-plugin-transform-vue-jsx": "^3.5.0",//babel轉譯過程中使用到的插件,避免重復
"babel-preset-env": "^1.3.2",//轉為es5,transform階段使用到的插件之一
"babel-preset-stage-2": "^6.22.0",//ECMAScript第二階段的規范
"chalk": "^2.0.1",//用來在命令行輸出不同顏色文字
"copy-webpack-plugin": "^4.0.1",//拷貝資源和文件
"css-loader": "^0.28.0",//webpack先用css-loader加載器去解析后綴為css的文件,再使用style-loader生成一個內容為最終解析完的css代碼的style標簽,放到head標簽里
"extract-text-webpack-plugin": "^3.0.0",//將一個以上的包里面的文本提取到單獨文件中
"file-loader": "^1.1.4",//③打包壓縮文件,與url-loader用法類似
"friendly-errors-webpack-plugin": "^1.6.1",//識別某些類別的WebPACK錯誤和清理,聚合和優先排序,以提供更好的開發經驗
"html-webpack-plugin": "^2.30.1",//簡化了HTML文件的創建,引入了外部資源,創建html的入口文件,可通過此項進行多頁面的配置
"node-notifier": "^5.1.2",//支持使用node發送跨平臺的本地通知
"optimize-css-assets-webpack-plugin": "^3.2.0",//壓縮提取出的css,并解決ExtractTextPlugin分離出的js重復問題(多個文件引入同一css文件)
"ora": "^1.2.0",//加載(loading)的插件
"portfinder": "^1.0.13",//查看進程端口
"postcss-import": "^11.0.0",//可以消耗本地文件、節點模塊或web_modules
"postcss-loader": "^2.0.8",//用來兼容css的插件
"postcss-url": "^7.2.1",//URL上重新定位、內聯或復制
"rimraf": "^2.6.0",//節點的UNIX命令RM—RF,強制刪除文件或者目錄的命令
"semver": "^5.3.0",//用來對特定的版本號做判斷的
"shelljs": "^0.7.6",//使用它來消除shell腳本在UNIX上的依賴性,同時仍然保留其熟悉和強大的命令,即可執行Unix系統命令
"uglifyjs-webpack-plugin": "^1.1.1",//壓縮js文件
"url-loader": "^0.5.8",//壓縮文件,可將圖片轉化為base64
"vue-loader": "^13.3.0",//VUE單文件組件的WebPACK加載器
"vue-style-loader": "^3.0.1",//類似于樣式加載程序,您可以在CSS加載器之后將其鏈接,以將CSS動態地注入到文檔中作為樣式標簽
"vue-template-compiler": "^2.5.2",//這個包可以用來預編譯VUE模板到渲染函數,以避免運行時編譯開銷和CSP限制
"webpack": "^3.6.0",//打包工具
"webpack-bundle-analyzer": "^2.9.0",//可視化webpack輸出文件的大小
"webpack-dev-server": "^2.9.1",//提供一個提供實時重載的開發服務器
"webpack-merge": "^4.1.0"//它將數組和合并對象創建一個新對象。如果遇到函數,它將執行它們,通過算法運行結果,然后再次將返回的值封裝在函數中
},
//engines是引擎,指定node和npm版本
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
//限制了瀏覽器或者客戶端需要什么版本才可運行
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}
這邊我們需要比較注意的是devDependencies
和dependencies
的區別 。
對于devDependencies
來說:在這個里面的插件只用于開發環境,不用于生產環境,屬于輔助的作用,打包的時候需要,打包完成就不需要了。
那么對于dependencies
來說:它是需要發布到生產環境的,自始至終都在。
2、prostcssrc.js
對于這個文件的話,其實它就是postcss-loader
包的一個配置,而且在webpack
的舊版本中可以直接在webpack.config.js
中配置,現版本中postcss
的文檔示例獨立出.postcssrc.js
,里面寫進去需要使用到的插件,代碼如下所示:
module.exports = {
"plugins": {
"postcss-import": {},//①postss插件@import 通過內聯內容來轉換規則。
"postcss-url": {},//②postss插件,用于在url上重新設置、內聯或復制
"autoprefixer": {}//③PostCSS插件解析CSS并使用Can I Use中的值將供應商前綴添加到CSS規則。它由Google 推薦并在Twitter和阿里巴巴中使用
}
}
postcss-
import
文檔地址: https:
//www.npmjs.com/package/postcss-import
postcss-url文檔地址 : https:
//www.npmjs.com/package/postcss-url
autoprefixer文檔地址 : https:
//www.npmjs.com/package/autoprefixer
3、babelrc
這個 .babelrc 文件是 es6解析的一個配置,代碼如下所示:
{
//制定轉碼的規則
"presets": [
//env是使用babel-preset-env插件將js進行轉碼成es5,并且設置不轉碼的AMD,COMMONJS的模塊文件,制定瀏覽器的兼容
["env", {
"modules": false,
"targets": {
"browsers": ["> 1%", "last 2 versions", "not ie <= 8"]
}
}],
"stage-2"
],
"plugins": ["transform-vue-jsx", "transform-runtime"]
}
4、其他文件
下面是一些相關文件的介紹,有興趣的小伙伴可以做個了解:
.editorconfig:
編輯器的配置文件 。
.gitignore:
忽略git提交的一個文件,配置之后提交時將不會加載忽略的文件。
index.html:
頁面入口,經過編譯之后的代碼將插入到這來。
package.lock.json:
鎖定安裝時的包的版本號,并且需要上傳到git,以保證其他人在npm install時大家的依賴能保證一致 。
README.md:
可此填寫項目介紹 。
node_modules:
根據package.json安裝時候生成的的依賴(安裝包) 。
5、src文件夾
下面這些是有關于在src文件夾中的內容介紹:
assets文件
:腳手架自動會放入一個圖片在里面作為初始頁面的logo
。平常我們使用的時候會在里面建立js
,css
,img
,fonts
等文件夾,作為靜態資源調用 。
components文件夾
:用來存放組件,合理地使用組件可以高效地實現復用等功能,從而更好地開發項目。一般情況下比如創建頭部組件的時候,我們會新建一個header
的文件夾,然后再新建一個header.vue
的文件。
router文件夾
:該文件夾下有一個叫index.js
文件,用于實現頁面的路由跳轉。
App.vue
:作為我們的主組件,可通過使用<router-view/>
開放入口讓其他的頁面組件得以顯示。
main.js
:作為我們的入口文件,主要作用是初始化vue實例并使用需要的插件,小型項目省略router
時可放在該處 。
6、config文件夾
config/dev.env.js
在config
內的文件其實都是服務于build
,大部分是定義一個變量export
出去的,代碼如下所示:
'use strict'//采用嚴格模式
const merge = require('webpack-merge')//①
const prodEnv = require('./prod.env')
//webpack-merge提供了一個合并函數,它將數組和合并對象創建一個新對象。
//如果遇到函數,它將執行它們,通過算法運行結果,然后再次將返回的值封裝在函數中.這邊將dev和prod進行合并
module.exports = merge(prodEnv, {
NODE_ENV: '"development"'
})
config/prod.env.js
當我們在開發時是調取dev.env.js的開發環境配置,發布時調用prod.env.js的生產環境配置,代碼如下所示:
'use strict'
module.exports = {
NODE_ENV: '"production"'
}
config/index.js
這個文件的話是用來定義開發環境和生產環境中需要的參數的,代碼如下所示:
'use strict'const path = require('path')module.exports = {dev: {// 開發環境下面的配置assetsSubDirectory: 'static', //子目錄,一般存放css,js,image等文件assetsPublicPath: '/', //根目錄proxyTable: {
//可利用該屬性解決跨域的問題
<br data-filtered="filtered">
'/api': {//代理<br data-filtered="filtered">
target:'http://localhost:8088/api',//接口域名<br data-filtered="filtered">changeOrigin:true,//是否跨域<br data-filtered="filtered"> pathRewrite: {<br data-filtered="filtered">'^/api': '' //需要rewrite重寫<br data-filtered="filtered"> }<br data-filtered="filtered"> },//可利用該屬性解決跨域的問題host:'localhost',// 地址port: 8080,//端口號設置,端口號占用出現問題可在此處修改autoOpenBrowser:false,//是否在編譯(輸入命令行npm run dev)后打開http://localhost:8080/頁面,以前配置為true,近些版本改為false,個人偏向習慣自動打開頁面errorOverlay:true,//瀏覽器錯誤提示notifyOnErrors:true,//跨平臺錯誤提示poll:false,//使用文件系統(file system)獲取文件改動的通知devServer.watchOptionsdevtool:'cheap-module-eval-source-map',//增加調試,該屬性為原始源代碼(僅限行)不可在生產環境中使用cacheBusting:true,//使緩存失效cssSourceMap:true//代碼壓縮后進行調bug定位將非常困難,于是引入sourcemap記錄壓縮前后的位置信息記錄,當產生錯誤時直接定位到未壓縮前的位置,將大大的方便我們調試},build: {// 生產環境下面的配置index: path.resolve(__dirname,'../dist/index.html'),//index編譯后生成的位置和名字,根據需要改變后綴,比如index.phpassetsRoot: path.resolve(__dirname,'../dist'),//編譯后存放生成環境代碼的位置assetsSubDirectory:'static',//js,css,images存放文件夾名assetsPublicPath:'/',//發布的根目錄,通常本地打包dist后打開文件會報錯,此處修改為./。如果是上線的文件,可根據文件存放位置進行更改路徑productionSourceMap:true,devtool:'#source-map',//unit的gzip命令用來壓縮文件,gzip模式下需要壓縮的文件的擴展名有js和cssproductionGzip:false,productionGzipExtensions: ['js','css'],bundleAnalyzerReport: process.env.npm_config_report}}
7、build文件夾
build/build.js
對于在這個文件夾中的build.js
文件的話,該文件的作用是用來構建生產版本,然而 package.json
中的scripts
的build
就是node build/build.js
,我們只需要輸入命令行npm run build
就可以對該文件進行編譯生成生產環境的代碼,代碼如下:
'use strict'
require('./check-versions')()//check-versions:調用檢查版本的文件。加()代表直接調用該函數
process.env.NODE_ENV = 'production'//設置當前是生產環境
//下面定義常量引入插件
const ora = require('ora')//①加載動畫
const rm = require('rimraf')//②刪除文件
const path = require('path')
const chalk = require('chalk')//③對文案輸出的一個彩色設置
const webpack = require('webpack')
const config = require('../config')//默認讀取下面的index.js文件
const webpackConfig = require('./webpack.prod.conf')
//調用start的方法實現加載動畫,優化用戶體驗
const spinner = ora('building for production...')
spinner.start()
//先刪除dist文件再生成新文件,因為有時候會使用hash來命名,刪除整個文件可避免冗余
rm(path.join(config.build.assetsRoot, config.build.assetsSubDirectory), err => {
if (err) throw err
webpack(webpackConfig, (err, stats) => {
spinner.stop()
if (err) throw err
process.stdout.write(stats.toString({
colors: true,
modules: false,
children: false, // If you are using ts-loader, setting this to true will make TypeScript errors show up during build.
chunks: false,
chunkModules: false
}) + '\n\n')
if (stats.hasErrors()) {
process.exit(1)
}
console.log(chalk.cyan(' Build complete.\n'))
console.log(chalk.yellow(
' Tip: built files are meant to be served over an HTTP server.\n' +
' Opening index.html over file:// won\'t work.\n'
))
})
})
build/check-version.js
那么在build文件夾下的version.js文件的話是用來檢測我們的node和npm版本的,代碼如下所示:
'use strict'
const chalk = require('chalk')
const semver = require('semver')//①對版本進行檢查
const packageConfig = require('../package.json')
const shell = require('shelljs')
function exec (cmd) {
//返回通過child_process模塊的新建子進程,執行 Unix 系統命令后轉成沒有空格的字符串
return require('child_process').execSync(cmd).toString().trim()
}
const versionRequirements = [
{
name: 'node',
currentVersion: semver.clean(process.version),//使用semver格式化版本
versionRequirement: packageConfig.engines.node//獲取package.json中設置的node版本
}
]
if (shell.which('npm')) {
versionRequirements.push({
name: 'npm',
currentVersion: exec('npm --version'),// 自動調用npm --version命令,并且把參數返回給exec函數,從而獲取純凈的版本號
versionRequirement: packageConfig.engines.npm
})
}
module.exports = function () {
const warnings = []
for (let i = 0; i < versionRequirements.length; i++) {
const mod = versionRequirements[i]
if (!semver.satisfies(mod.currentVersion, mod.versionRequirement)) {
//上面這個判斷就是如果版本號不符合package.json文件中指定的版本號,就執行下面錯誤提示的代碼
warnings.push(mod.name + ': ' +
chalk.red(mod.currentVersion) + ' should be ' +
chalk.green(mod.versionRequirement)
)
}
}
if (warnings.length) {
console.log('')
console.log(chalk.yellow('To use this template, you must update following to modules:'))
console.log()
for (let i = 0; i < warnings.length; i++) {
const warning = warnings[i]
console.log(' ' + warning)
}
console.log()
process.exit(1)
}
}
build/utils.js
那么對于在build中的utils.js文件來說這則是一個工具,是用來處理css的文件,代碼如下所示:
'use strict'const path = require('path')const config = require('../config')const ExtractTextPlugin = require('extract-text-webpack-plugin')const packageConfig = require('../package.json')//導出文件的位置,根據環境判斷開發環境和生產環境,為config文件中index.js文件中定義的build.assetsSubDirectory或dev.assetsSubDirectoryexports.assetsPath = function (_path) {const assetsSubDirectory = process.env.NODE_ENV === 'production'? config.build.assetsSubDirectory: config.dev.assetsSubDirectory//Node.js path 模塊提供了一些用于處理文件路徑的小工具①return path.posix.join(assetsSubDirectory, _path)}exports.cssLoaders = function (options) {options = options || {}//使用了css-loader和postcssLoader,通過options.usePostCSS屬性來判斷是否使用postcssLoader中壓縮等方法const cssLoader = {loader: 'css-loader',options: {sourceMap: options.sourceMap}}const postcssLoader = {loader: 'postcss-loader',options: {sourceMap: options.sourceMap}}function generateLoaders (loader, loaderOptions) {const loaders = options.usePostCSS ? [cssLoader, postcssLoader] : [cssLoader]if (loader) {loaders.push({loader: loader + '-loader',//Object.assign是es6語法的淺復制,后兩者合并后復制完成賦值options: Object.assign({}, loaderOptions, {sourceMap: options.sourceMap})})}if (options.extract) {//ExtractTextPlugin可提取出文本,代表首先使用上面處理的loaders,當未能正確引入時使用vue-style-loaderreturn ExtractTextPlugin.extract({use: loaders,fallback: 'vue-style-loader'})} else {//返回vue-style-loader連接loaders的最終值return ['vue-style-loader'].concat(loaders)}}return {css: generateLoaders(),//需要css-loader 和 vue-style-loaderpostcss: generateLoaders(),//需要css-loader和postcssLoader 和 vue-style-loaderless: generateLoaders('less'),//需要less-loader 和 vue-style-loadersass: generateLoaders('sass', { indentedSyntax: true }),//需要sass-loader 和 vue-style-loaderscss: generateLoaders('sass'),//需要sass-loader 和 vue-style-loaderstylus: generateLoaders('stylus'),//需要stylus-loader 和 vue-style-loaderstyl: generateLoaders('stylus')//需要stylus-loader 和 vue-style-loader}}exports.styleLoaders = function (options) {const output = []const loaders = exports.cssLoaders(options)//將各種css,less,sass等綜合在一起得出結果輸出outputfor (const extension in loaders) {const loader = loaders[extension]output.push({test: new RegExp('\\.' + extension + '$'),use: loader})}return output}exports.createNotifierCallback = () => {//發送跨平臺通知系統const notifier = require('node-notifier')return (severity, errors) => {if (severity !== 'error') return//當報錯時輸出錯誤信息的標題,錯誤信息詳情,副標題以及圖標const error = errors[0]const filename = error.file && error.file.split('!').pop()notifier.notify({title: packageConfig.name,message: severity + ': ' + error.name,subtitle: filename || '',icon: path.join(__dirname, 'logo.png')})}}
vue-loader.conf.js
關于這個文件的話,我們就直接看下面代碼吧!
'use strict'
const utils = require('./utils')
const config = require('../config')
const isProduction = process.env.NODE_ENV === 'production'
const sourceMapEnabled = isProduction
? config.build.productionSourceMap
: config.dev.cssSourceMap
//處理項目中的css文件,生產環境和測試環境默認是打開sourceMap,而extract中的提取樣式到單獨文件只有在生產環境中才需要
module.exports = {
loaders: utils.cssLoaders({
sourceMap: sourceMapEnabled,
extract: isProduction
}),
cssSourceMap: sourceMapEnabled,
cacheBusting: config.dev.cacheBusting,
transformToRequire: {
video: ['src', 'poster'],
source: 'src',
img: 'src',
image: 'xlink:href'
}
}
webpack.base.conf.js
這個文件的是屬于開發和生產共同使用提出來的基礎文件,主要是實現配置入口、輸出環境和配置模板resolve和插件等等的作用。代碼如下所示:
'use strict'const path = require('path')const utils = require('./utils')const config = require('../config')const vueLoaderConfig = require('./vue-loader.conf')function resolve (dir) {//拼接出絕對路徑return path.join(__dirname, '..', dir)}module.exports = {//path.join將路徑片段進行拼接,而path.resolve將以/開始的路徑片段作為根目錄,在此之前的路徑將會被丟棄//path.join('/a', '/b') // 'a/b',path.resolve('/a', '/b') // '/b'context: path.resolve(__dirname, '../'),//配置入口,默認為單頁面所以只有app一個入口entry: {app: './src/main.js'},//配置出口,默認是/dist作為目標文件夾的路徑output: {path: config.build.assetsRoot,//路徑filename: '[name].js',//文件名publicPath: process.env.NODE_ENV === 'production'? config.build.assetsPublicPath: config.dev.assetsPublicPath//公共存放路徑},resolve: {//自動的擴展后綴,比如一個js文件,則引用時書寫可不要寫.jsextensions: ['.js', '.vue', '.json'],//創建路徑的別名,比如增加'components': resolve('src/components')等alias: {'vue$': 'vue/dist/vue.esm.js','@': resolve('src'),}},//使用插件配置相應文件的處理方法module: {rules: [//使用vue-loader將vue文件轉化成js的模塊①{test: /\.vue$/,loader: 'vue-loader',options: vueLoaderConfig},//js文件需要通過babel-loader進行編譯成es5文件以及壓縮等操作②{test: /\.js$/,loader: 'babel-loader',include: [resolve('src'), resolve('test'), resolve('node_modules/webpack-dev-server/client')]},//圖片、音像、字體都使用url-loader進行處理,超過10000會編譯成base64③{test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,loader: 'url-loader',options: {limit: 10000,name: utils.assetsPath('img/[name].[hash:7].[ext]')}},{test: /\.(mp4|webm|ogg|mp3|wav|flac|aac)(\?.*)?$/,loader: 'url-loader',options: {limit: 10000,name: utils.assetsPath('media/[name].[hash:7].[ext]')}},{test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,loader: 'url-loader',options: {limit: 10000,name: utils.assetsPath('fonts/[name].[hash:7].[ext]')}}]},//以下選項是Node.js全局變量或模塊,這里主要是防止webpack注入一些Node.js的東西到vue中node:setImmediate: false,dgram: 'empty',fs: 'empty',net: 'empty',tls: 'empty',child_process: 'empty'}}
webpack.dev.conf.js
這個文件是在vue開發環境中的webpack相關文件,代碼如下所示:
'use strict'
const utils = require('./utils')
const webpack = require('webpack')
const config = require('../config')
//通過webpack-merge實現webpack.dev.conf.js對wepack.base.config.js的繼承
const merge = require('webpack-merge')
const path = require('path')
const baseWebpackConfig = require('./webpack.base.conf')
const CopyWebpackPlugin = require('copy-webpack-plugin')
const HtmlWebpackPlugin = require('html-webpack-plugin')
//美化webpack的錯誤信息和日志的插件①
const FriendlyErrorsPlugin = require('friendly-errors-webpack-plugin')
const portfinder = require('portfinder')// 查看空閑端口位置,默認情況下搜索8000這個端口②
const HOST = process.env.HOST//③processs為node的一個全局對象獲取當前程序的環境變量,即host
const PORT = process.env.PORT && Number(process.env.PORT)
const devWebpackConfig = merge(baseWebpackConfig, {
module: {
//規則是工具utils中處理出來的styleLoaders,生成了css,less,postcss等規則
rules: utils.styleLoaders({ sourceMap: config.dev.cssSourceMap, usePostCSS: true })
},
devtool: config.dev.devtool, //增強調試,上文有提及
//此處的配置都是在config的index.js中設定好了
devServer: {//④
clientLogLevel: 'warning',//控制臺顯示的選項有none, error, warning 或者 info
//當使用 HTML5 History API 時,任意的 404 響應都可能需要被替代為 index.html
historyApiFallback: {
rewrites: [
{ from: /.*/, to: path.posix.join(config.dev.assetsPublicPath, 'index.html') },
],
},
hot: true,//熱加載
contentBase: false,
compress: true,//壓縮
host: HOST || config.dev.host,
port: PORT || config.dev.port,
open: config.dev.autoOpenBrowser,//調試時自動打開瀏覽器
overlay: config.dev.errorOverlay
? { warnings: false, errors: true }
: false,// warning 和 error 都要顯示
publicPath: config.dev.assetsPublicPath,
proxy: config.dev.proxyTable,//接口代理
quiet: true, //控制臺是否禁止打印警告和錯誤,若用FriendlyErrorsPlugin 此處為 true
watchOptions: {
poll: config.dev.poll,//// 文件系統檢測改動
}
},
plugins: [
new webpack.DefinePlugin({
'process.env': require('../config/dev.env')
}),
new webpack.HotModuleReplacementPlugin(),//⑤模塊熱替換插件,修改模塊時不需要刷新頁面
new webpack.NamedModulesPlugin(), // 顯示文件的正確名字
new webpack.NoEmitOnErrorsPlugin(),//當webpack編譯錯誤的時候,來中端打包進程,防止錯誤代碼打包到文件中
// https://github.com/ampedandwired/html-webpack-plugin
// 該插件可自動生成一個 html5 文件或使用模板文件將編譯好的代碼注入進去⑥
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'index.html',
inject: true
}),
new CopyWebpackPlugin([//復制插件
{
from: path.resolve(__dirname, '../static'),
to: config.dev.assetsSubDirectory,
ignore: ['.*']//忽略.*的文件
}
])
]
})
module.exports = new Promise((resolve, reject) => {
portfinder.basePort = process.env.PORT || config.dev.port
//查找端口號
portfinder.getPort((err, port) => {
if (err) {
reject(err)
} else {
//端口被占用時就重新設置evn和devServer的端口
process.env.PORT = port
devWebpackConfig.devServer.port = port
//友好地輸出信息
devWebpackConfig.plugins.push(new FriendlyErrorsPlugin({
compilationSuccessInfo: {
messages: [`Your application is running here: http://${devWebpackConfig.devServer.host}:${port}`],
},
onErrors: config.dev.notifyOnErrors
? utils.createNotifierCallback()
: undefined
}))
resolve(devWebpackConfig)
}
})
})
webpack.prod.conf.js
這個文件和上面的類似它是vue生產環境的webpack相關配置文件,代碼如下所示:
'use strict'const path = require('path')const utils = require('./utils')// 工具函數集合const webpack = require('webpack')const config = require('../config')const merge = require('webpack-merge')// webpack 配置合并插件const baseWebpackConfig = require('./webpack.base.conf')// webpack 基本配置const CopyWebpackPlugin = require('copy-webpack-plugin')// webpack 復制文件和文件夾的插件const HtmlWebpackPlugin = require('html-webpack-plugin')// 自動生成 html 并且注入到 .html 文件中的插件const ExtractTextPlugin = require('extract-text-webpack-plugin')// 提取css的插件const OptimizeCSSPlugin = require('optimize-css-assets-webpack-plugin')//webpack 優化壓縮和優化 css 的插件const UglifyJsPlugin = require('uglifyjs-webpack-plugin')const env = require('../config/prod.env')const webpackConfig = merge(baseWebpackConfig, {module: {//調用utils.styleLoaders的方法rules: utils.styleLoaders({sourceMap: config.build.productionSourceMap,//開啟調試的模式。默認為trueextract: true,usePostCSS: true})},devtool: config.build.productionSourceMap ? config.build.devtool : false,output: {path: config.build.assetsRoot,filename: utils.assetsPath('js/[name].[chunkhash].js'),chunkFilename: utils.assetsPath('js/[id].[chunkhash].js')},plugins: [// http://vuejs.github.io/vue-loader/en/workflow/production.htmlnew webpack.DefinePlugin({'process.env': env}),// 壓縮 jsnew UglifyJsPlugin({uglifyOptions: {compress: {warnings: false}},sourceMap: config.build.productionSourceMap,parallel: true}),// extract css into its own filenew ExtractTextPlugin({filename: utils.assetsPath('css/[name].[contenthash].css'),// Setting the following option to `false` will not extract CSS from codesplit chunks.// Their CSS will instead be inserted dynamically with style-loader when the codesplit chunk has been loaded by webpack.// It's currently set to `true` because we are seeing that sourcemaps are included in the codesplit bundle as well whenit's `false`,// increasing file size: https://github.com/vuejs-templates/webpack/issues/1110allChunks: true,}),// Compress extracted CSS. We are using this plugin so that possible// duplicated CSS from different components can be deduped.new OptimizeCSSPlugin({cssProcessorOptions: config.build.productionSourceMap? { safe: true, map: { inline: false } }: { safe: true }}),// generate dist index.html with correct asset hash for caching.// you can customize output by editing /index.html// see https://github.com/ampedandwired/html-webpack-pluginnew HtmlWebpackPlugin({filename: config.build.index,template: 'index.html',inject: true,minify: {removeComments: true,collapseWhitespace: true,removeAttributeQuotes: true// more options:// https://github.com/kangax/html-minifier#options-quick-reference},// necessary to consistently work with multiple chunks via CommonsChunkPluginchunksSortMode: 'dependency'}),// keep module.id stable when vendor modules does not changenew webpack.HashedModuleIdsPlugin(),// enable scope hoistingnew webpack.optimize.ModuleConcatenationPlugin(),// 分割公共 js 到獨立的文件new webpack.optimize.CommonsChunkPlugin({name: 'vendor',minChunks (module) {// node_modules中的任何所需模塊都提取到vendorreturn (module.resource &&/\.js$/.test(module.resource) &&module.resource.indexOf(path.join(__dirname, '../node_modules')) === 0)}}),// extract webpack runtime and module manifest to its own file in order to// prevent vendor hash from being updated whenever app bundle is updatednew webpack.optimize.CommonsChunkPlugin({name: 'manifest',minChunks: Infinity}),// This instance extracts shared chunks from code splitted chunks and bundles them// in a separate chunk, similar to the vendor chunk// see: https://webpack.js.org/plugins/commons-chunk-plugin/#extra-async-commons-chunknew webpack.optimize.CommonsChunkPlugin({name: 'app',async: 'vendor-async',children: true,minChunks: 3}),// 復制靜態資源new CopyWebpackPlugin([{from: path.resolve(__dirname, '../static'),to: config.build.assetsSubDirectory,ignore: ['.*']}])]})if (config.build.productionGzip) {const CompressionWebpackPlugin = require('compression-webpack-plugin')webpackConfig.plugins.push(new CompressionWebpackPlugin({asset: '[path].gz[query]',algorithm: 'gzip',test: new RegExp('\\.(' +config.build.productionGzipExtensions.join('|') +')$'),threshold: 10240,minRatio: 0.8}))}if (config.build.bundleAnalyzerReport) {const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPluginwebpackConfig.plugins.push(new BundleAnalyzerPlugin())}module.exports = webpackConfigwebpack.prod.conf.js
<a title="postcss" href="https://www.npmjs.com/package/postcss-import" target="_blank"> </a>
以上就是“vue-cli webpack的配置方法是什么”這篇文章的所有內容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學習更多的知識,請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。