使用vue-cli創(chuàng)建項(xiàng)目并webpack打包的操作方法
1.準(zhǔn)備環(huán)境(nodejs下載和設(shè)置環(huán)境變量)2.全局安裝vue-cli,提供vue命令進(jìn)行創(chuàng)建vue項(xiàng)目
npm install -g @vue/cli
關(guān)于舊版本Vue CLI 的包名稱(chēng)由 vue-cli 改成了 @vue/cli。 如果你已經(jīng)全局安裝了舊版本的 vue-cli (1.x 或 2.x),你需要先通過(guò) npm uninstall vue-cli -g 或 yarn global remove vue-cli 卸載它。
3.創(chuàng)建一個(gè)基于 webpack 模板的新項(xiàng)目(先新建項(xiàng)目文件夾,打開(kāi)所在位置命令行)
vue init webpack my-project
4.進(jìn)行默認(rèn)配置
# 這里需要進(jìn)行一些配置,默認(rèn)回車(chē)即可This will install Vue 2.x version of the template.For Vue 1.x use: vue init webpack#1.0 my-project# 開(kāi)始配置? Project name my-project? Project description A Vue.js project? Author runoob <test@runoob.com>? Vue build standalone? Use ESLint to lint your code? Yes? Pick an ESLint preset Standard? Setup unit tests with Karma + Mocha? Yes? Setup e2e tests with Nightwatch? Yes# 配置結(jié)束 vue-cli · Generated 'my-project'. To get started:cd my-project npm install npm run dev Documentation can be found at https://vuejs-templates.github.io/webpack
5.進(jìn)入項(xiàng)目,安裝node_modules,并啟動(dòng)項(xiàng)目
cd my-projectnpm installnpm run dev
6.打包項(xiàng)目,并且配置nginx
# 打包項(xiàng)目npm run build
nginx配置
worker_processes 1;events { worker_connections 1024;}http { include mime.types; default_type application/octet-stream; sendfileon; keepalive_timeout 65; server {listen 8081;server_name localhost;location / { root E:/vuework/my-project/dist;try_files $uri $uri/ /index.html; index index.html index.htm;} }}
7.重復(fù)打包,文件不更新問(wèn)題。在build目錄下的webpack打包文件引用clean-webpack-plugin插件,然后在plugin中使用即可。
8.部署:配置nginx,打包項(xiàng)目,啟動(dòng)nginx即可
npm run buildstart nginx
到此這篇關(guān)于使用vue-cli創(chuàng)建項(xiàng)目,webpack打包的文章就介紹到這了,更多相關(guān)vue webpack打包內(nèi)容請(qǐng)搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!
相關(guān)文章:
1. React實(shí)現(xiàn)一個(gè)倒計(jì)時(shí)hook組件實(shí)戰(zhàn)示例2. 小技巧處理div內(nèi)容溢出3. ASP基礎(chǔ)入門(mén)第三篇(ASP腳本基礎(chǔ))4. CSS Hack大全-教你如何區(qū)分出IE6-IE10、FireFox、Chrome、Opera5. CSS3實(shí)現(xiàn)動(dòng)態(tài)翻牌效果 仿百度貼吧3D翻牌一次動(dòng)畫(huà)特效6. Xml簡(jiǎn)介_(kāi)動(dòng)力節(jié)點(diǎn)Java學(xué)院整理7. 三個(gè)不常見(jiàn)的 HTML5 實(shí)用新特性簡(jiǎn)介8. html清除浮動(dòng)的6種方法示例9. XML解析錯(cuò)誤:未組織好 的解決辦法10. html中的form不提交(排除)某些input 原創(chuàng)
