Articles in this series
處理"cannot GET/xxx"的筆記提到 publicPath: "/" 這個組態,webpack在官方文件有說這是非常重要的設定: This is an important option when using on-demand-loading or loading external...
先記錄一下前陣子遇到一堆React-Router-Dom在webpack上使用的組態設定問題。 devServer: { historyApiFallback: true} 我用React-Router設定404 error的路由,如圖,亂打一串路徑的結果直接得到 "cannot GET...
前幾天用webpack(version: 5.74.0)載入 .env 檔案一直出現「"process is not defined" error」的錯誤,也是先速速記錄一下解決辦法。 先說結論 官方文件用的 Dotenv Plugin 方法 救了我: npm i -D...
先記錄一下遇到的問題 因為是用local server接第三方API(Pexels API),網路上有些解法不太適用或者無法解決我遇到的狀況,例如: 請後端改成開放local server可以跨域請求(不適用) 瀏覽器增加可跨域的擴充功能,如Chrome商店的Allow CORS:...
這篇文章主要參考 A Beginner’s Guide to Webpack 和 Webpack 5 : Guide for beginners 兩篇教學文去設定webpack 5的組態檔案,但因為兩篇文章的內容有錯誤且部份是webpack...