webpack4 vue怎么搭建自己的vue-亚博电竞手机版
这篇文章主要介绍了webpack4 vue怎么搭建自己的vue-cli项目,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。
前置知识
•熟悉 webpack4•熟悉 vue
搭建基本骨架
npm init
安装webpack4
npm install webpack webpack-cli --save-dev
在开始之前先实验一下环境
根目录新建文件 index.html
vue
根目录新建文件 src/main.js
console.log("我是main");
根目录新建文件webpack.config.js
constpath=require('path') module.exports={ entry:'./src/main.js', output:{ path:path.resolve(__dirname,dist), filename:'index.js' } }
打包js文件
npx webpack --config webpack.config.js
会看到一些报错,只要构建成功就ok
这里说明环境是没有问题的
配置初始生成环境
开始安装vue-loader吧
npm i webpack vue vue-loader -d //-d就是--save-dev
安装完成后看输出
提示安装的依赖要安装
npm install webpack css-loader -d
安装完毕后新建src/app.vue
你好{{data}}
.vue文件是无法直接运行的,需要在webpack里面配置loader
这里参照某课的老师的方法,html用webpack生成(后面说明)
在根目录新建index.js 删除index.html
importvuefrom'vue' importappfrom'./app.vue' constroot=document.createelement('div') document.body.appendchild(root) newvue({ render:(h)=>h(app) }).$mount(root)
改写webpack.config.js
constpath=require('path') module.exports={ entry:path.resolve(__dirname,'src/index.js'),//关于path模块可以看看阮一峰的教程http://javascript.ruanyifeng.com/nodejs/path.html#toc0 output:{ path:path.resolve(__dirname,'dist'), filename:'index.js' }, module:{ rules:[{ test:/\.vue$/, loader:'vue-loader' }] } }
在package里面添加脚本
"build": "webpack --config webpack.config.js"
控制台运行
npm run build
不出意外会报错
这里有2个问题,一个是没有指定mode 一个是没有引用vue的插件
我们需要改写webpack.config.js,在config里面加一行
mode: 'production', //暂时指定为生产环境
再次运行npm run build 会报错,需要安装一个包
这个报错,原本在vue-loader就有提示,不知道为什么现在没有,运行之前报错
error: [vue-loader] vue-template-compiler must be installed as a peer dependency, or a compatible compiler implementation must be passed via options
安装vue-template-compiler
npm install vue-template-compiler -d
再再次运行npm run build
假如按步骤来不除意外这里可以打包成功了~~~~
我们需要验证打包文件时候是否正确,所以这里使用插件htmlwebpackplugin,帮我们自动创建html文件,并且在后续的hash文件名上很有用,具体可以看官方介绍
npm install html-webpack-plugin -d
改webpack.config.js代码
constpath=require('path') const{vueloaderplugin}=require('vue-loader') varhtmlwebpackplugin=require('html-webpack-plugin');//引入插件 module.exports={ mode:'production',//暂时指定为生产环境 entry:path.resolve(__dirname,'src/index.js'),//关于path模块可以看看阮一峰的教程http://javascript.ruanyifeng.com/nodejs/path.html#toc0 output:{ path:path.resolve(__dirname,'dist'), filename:'index.js' }, module:{ rules:[{ test:/\.vue$/, loader:'vue-loader' }] }, plugins:[ newvueloaderplugin(), newhtmlwebpackplugin() ] }
npm run build打包一下,dist文件夹下面会有两个文件
启动一个静态服务器
打包vue程序完成~~~~
至此完成了最基本的webpack配置
接下来我们要完成的的配置开发环境
配置开发环境
关于开发环境以及生成环境,webpack是需要区分的,根据文档模块,我决定在命令里面指定模式,相应的就将开发环境以及生成环境分开,
这里我使用的是提起基本的webpack配置使用webpack-merge这个包来拼接我们webpack配置
npm i webpack-merge -d
修改配置文件
将各各环境的代码区分开,webpack的结构是这样的
webpack.config.base.js
constpath=require('path') constconfig={ entry:path.resolve(__dirname,'../src/index.js'), output:{ path:path.resolve(__dirname,'dist'), filename:'index.js' }, module:{ rules:[{ test:/\.vue$/, loader:'vue-loader' }] } }
module.exports = config
webpack.config.build.js const{vueloaderplugin}=require('vue-loader') consthtmlwebpackplugin=require('html-webpack-plugin') constmerge=require('webpack-merge') constbaseconfig=require('./webpack.config.base') constconfig=merge(baseconfig,{ plugins:[ newvueloaderplugin(), newhtmlwebpackplugin() ] })
module.exports = config
这里配置开发环境就是重头戏了,我们使用webpack-dev-server
webpack-dev-server是一个小型的node.js express服务器,代码都跑在内存里面
安装webpack-dev-server
npminstallwebpack-dev-server-d webpack.config.dev.js constwebpack=require('webpack') constmerge=require('webpack-merge') constbaseconfig=require('./webpack.config.base') const{vueloaderplugin}=require('vue-loader') consthtmlwebpackplugin=require('html-webpack-plugin') constconfig=merge(baseconfig,{ devserver:{ port:'8000', host:'localhost', hot:true,//热加载 //quiet:true//控制台中不输出打包的信息 }, plugins:[ newvueloaderplugin(), newhtmlwebpackplugin(), newwebpack.hotmodulereplacementplugin() ] }) module.exports=config
最后在package里面添加脚本
"build": "webpack --mode=production --config build/webpack.config.build.js","dev": "webpack-dev-server --mode=development --progress --config build/webpack.config.dev.js"
执行npm run dev查看控制台
这就成功了,在浏览器里面输入http://localhost:8000/,修改app.vue文件,实现了vue-cli的热加载了~~~~
接下来完善一下,不能只有.vue文件的loader,其他的webpack也要认识
我们配置一下图片的loader,以及css的loader,同时css使用postcss进行预处理
url-loader 用于将文件转换为base64 uri file-loader是依赖loader
npm i url-loader file-loader -d
添加配置webpack.config.base.js>module>rules
{ test:/\.(gif|png|jpg|svg)$/, use:[{ loader:'url-loader', options:{ limit:2048, name:'resources/[path][name].[hash:8].[ext]' } }] },
配置css(vue-cli里面的实现非常友好,有机会可以去看看) 下面的是最简单的配置
npminstallcss-loader-d npminstallstyle-loader-d npminstallpostcss-loader-d
添加配置webpack.config.base.js>module>rules (postcss不了解谷歌一下)
{ test:/\.css$/, use:[ 'css-loader', 'style-loader', { loader:'postcss-loader', options:{ sourcemap:true//启用源映射支持,postcss-loader将使用其他加载器给出的先前源映射并相应地更新它 } } ] } npminstallautoprefixer-d
根目录新建文件postcss.config.js,安装autoprefixer (自动添加浏览器前缀)
constautoprofixer=require('autoprefixer') module.exports={ plugins:[ autoprofixer() ] }
配置到这里基本的图片以及css就配置完成了,运行一下试试 npm run dev
我找src下面创建了assets/img/user.jpg
app.vue
你好{{data}}
实现了开发环境的图片以及css的配置
打包一下试试
build后生成的目录是这样的
这不是我们想要的,webpack把代码,类库,css都打包在一起,这样不管是上线还是首屏加载都有影响,所以这里我们要优化webpack
在处理之前想安装一个可以帮助我们每次build之前自动删除上次build生成的文件的插件
clean-webpack-plugin这个插件不知道为什么,怎么配置路径都没效果
这里我使用rimraf来进行删除(vue-cli也是使用rimraf,但是他是写在代码里面)
npm install rimraf -d
在package里面变一下脚本,让打包之前帮我们删除之前到打包文件
"build-webpack": "webpack --mode=production --config build/webpack.config.build.js","delete": "rimraf dist","build": "npm run delete && npm run build-webpack"
分离打包css
它会将所有的入口 chunk(entry chunks)中引用的 *.css,移动到独立分离的 css 文件
npm install extract-text-webpack-plugin@next -d
因为开发环境和生产环境不一样
我们需要将css部分的代码分环境配置
1.将原先的css配置放到webpack.config.dev.js里面
2.在webpack.config.build.js里面重写
module:{ rules:[{ test:/\.css$/, use:extracttextplugin.extract({ fallback:"style-loader", use:[ 'css-loader', { loader:'postcss-loader', options:{ sourcemap:true } } ] }) }] },
这样的话,我们开发环境不影响依旧是之前到模式,build的时候用extracttextplugin帮我们分离非js文件,实现css的分离打包
我们打包一下试试npm run build
分离js文件
接下来是分离js文件,就是将库文件以及我们的代码分离开,利于上线后的浏览器缓存,代码会经常变,库不会经常变
在webpack4之前js分离用的插件是commonschunkplugin,不过这插件现在移除了,现在用的是optimization.splitchunks 来进行公共代码与第三方代码的提取,splitchunks参数如下
optimization:{ splitchunks:{ chunks:"initial",//代码块类型必须三选一:"initial"(初始化)|"all"(默认就是all)|"async"(动态加载) minsize:0,//最小尺寸,默认0 minchunks:1,//最小chunk,默认1 maxasyncrequests:1,//最大异步请求数,默认1 maxinitialrequests:1,//最大初始化请求书,默认1 name:()=>{},//名称,此选项课接收function cachegroups:{//缓存组会继承splitchunks的配置,但是test、priorty和reuseexistingchunk只能用于配置缓存组。 priority:"0",//缓存组优先级false|object| vendor:{//key为entry中定义的入口名称 chunks:"initial",//必须三选一:"initial"(初始化)|"all"|"async"(默认就是异步) test:/react|lodash/,//正则规则验证,如果符合就提取chunk name:"vendor",//要缓存的分隔出来的chunk名称 minsize:0, minchunks:1, enforce:true, reuseexistingchunk:true//可设置是否重用已用chunk不再创建新的chunk } } } }
官方包括这解释,我并不是很看懂,所以打包策略并不是很好
在webpack.config.build.js>config
output:{ filename:'[name].[chunkhash:8].js' }, optimization:{ splitchunks:{ chunks:"all", cachegroups:{ vendor:{ test:/node_modules/,//这里虽然分离了,但是没有做到按需引入,看官方配置也不是很明白 name:'vendors', chunks:'all' } } }, runtimechunk:true }
build一下查看目录,可以看出代码与库之间分离了
关于eslint,我就不引入的,有兴趣可以讨论一下
.gitignore
这里处理一下git 新建文件.gitignore
.ds_store node_modules/ /dist/ npm-debug.log* yarn-debug.log* yarn-error.log* #editordirectoriesandfiles .idea .vscode *.suo *.ntvs* *.njsproj *.sln .editorconfig,
处理一下编译器的统一配置
新建文件 .editorconfig,(关于editorconfig,以及配置解释)
root=true [*] charset=utf-8 indent_style=space indent_size=2 end_of_line=lf insert_final_newline=true trim_trailing_whitespace=true
还有一点要注意,假如没有效果,vscode需要安装一个插件editorconfig for vs code,其他编译器不太清楚
.babelrc
处理一下es6,以及js文件的webpack的loader配置
今天装了babel-loader8.0.0 报错报一上午,心态都搞崩了,所以这里我使用的是7版本
npm install babel-loader@7 babel-core babel-preset-env -d
在webpack.config.base.js>module>rules里面添加代码
{ test:/\.js$/, exclude:/node_modules/, loader:'babel-loader' }
新建文件 .babelrc
{ "presets":[ "env" ] }
首先检查开发环境
我新建了一个es6语法的js 导入到app.vue里面
运行结果
感谢你能够认真阅读完这篇文章,希望小编分享的“webpack4 vue怎么搭建自己的vue-cli项目”这篇文章对大家有帮助,同时也希望大家多多支持恰卡编程网,关注恰卡编程网行业资讯频道,更多相关知识等着你来学习!