您好,登錄后才能下訂單哦!
今天小編給大家分享一下webpack轉(zhuǎn)vite的操作流程與問(wèn)題是什么的相關(guān)知識(shí)點(diǎn),內(nèi)容詳細(xì),邏輯清晰,相信大部分人都還太了解這方面的知識(shí),所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來(lái)了解一下吧。
npm install -g wp2vite
執(zhí)行之前記得安裝好依賴:npm install
wp2vite --config=./vue.config.js //你的webpack配置文件
執(zhí)行完以上命令后再執(zhí)行一遍:npm install
截止這一步,主要操作搞定
1、刪除原有public目錄下的index.html文件
2、修改根目錄下的index.html,引用自己的main.js文件
<script type="module" src="/src/main.ts"></script>
我的是ts,可自行修改
3、重點(diǎn):vite.config.js
①設(shè)置alias,增加絕對(duì)路徑@
let alias = { '.git': path.resolve(__dirname, './.git'), 'docker': path.resolve(__dirname, './docker'), 'docs': path.resolve(__dirname, './docs'), 'node_modules': path.resolve(__dirname, './node_modules'), 'public': path.resolve(__dirname, './public'), 'src': path.resolve(__dirname, './src'), '@': path.resolve(__dirname, 'src'), }
②設(shè)置proxy,就是你的代理
在proxy對(duì)象中添加代理
注意此時(shí)寫法有變,將pathRewrite修改為rewrite,舉個(gè)栗子
vue.config.js
'/api': { target: `http://localhost:8180`, changeOrigin: true, ws: true, pathRewrite: { '^/api': '', }, },
vite.config.js
'/api': { target: `http://localhost:8180`, changeOrigin: true, ws: true, rewrite: (path) => path.replace(/^\/api/, '') },
4、require報(bào)錯(cuò)
如果你用到了require.context()
,請(qǐng)?zhí)鎿Q為import.meta.globEager()
,示范如下
const requires = require.context('@/modules', true, /router\.ts$/);//原有 const requires = import.meta.globEager("@/modules/*/router.ts")//修改后
5、path.resolve報(bào)錯(cuò)
先安裝依賴
npm install path-browserify --save
修改引入方式為
import path from 'path-browserify'
npm run dev
啟動(dòng)速度
vite
webpack
實(shí)在太慢,不想截圖了
熱更新速度
biu~bang //超級(jí)快
錄了視頻,但是要轉(zhuǎn)成gif,不想轉(zhuǎn),改vue頁(yè)面改完就能生效,都不用刷新頁(yè)面;改ts文件也是立刻生效,會(huì)自動(dòng)刷新頁(yè)面
以上就是“webpack轉(zhuǎn)vite的操作流程與問(wèn)題是什么”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會(huì)為大家更新不同的知識(shí),如果還想學(xué)習(xí)更多的知識(shí),請(qǐng)關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。