您好,登錄后才能下訂單哦!
這篇文章主要介紹了react腳手架如何配置路徑別名,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
react版本16.13.1
1輸入命令 npm run eject 在項目根目錄下生成config目錄
2在confilg下打開webpack.config.js文件找到如下位置
alias: { // Support React Native Web // https://www.smashingmagazine.com/2016/08/a-glimpse-into-the-future-with-react-native-for-web/ 'react-native': 'react-native-web', // Allows for better profiling with ReactDevTools ...(isEnvProductionProfile && { 'react-dom$': 'react-dom/profiling', 'scheduler/tracing': 'scheduler/tracing-profiling', }), ...(modules.webpackAliases || {}), },
3修改如下,然后重啟項目
alias: { // Support React Native Web // https://www.smashingmagazine.com/2016/08/a-glimpse-into-the-future-with-react-native-for-web/ 'react-native': 'react-native-web', // Allows for better profiling with ReactDevTools ...(isEnvProductionProfile && { 'react-dom$': 'react-dom/profiling', 'scheduler/tracing': 'scheduler/tracing-profiling', }), ...(modules.webpackAliases || {}), // 文件路徑別名 '@': path.resolve(__dirname, '../src'), '@view': path.resolve(__dirname, '../src/view'), },
簡單版配置:
package.json中直接添加:"proxy": "http://localhost:4000"
完整版本配置:
(1).下載:yarn add http-proxy-middleware
(2).在src目錄下創建:setupProxy.js,內容如下:
const proxy = require('http-proxy-middleware') module.exports = function(app) { app.use( proxy.createProxyMiddleware('/api', { //帶有api是需要轉發的請求 target: 'http://localhost:4000', // 這里是服務器地址 changeOrigin: true,//值為布爾值, 為true時, 本地就會虛擬一個服務器接收你的請求并代你發送該請求, pathRewrite: {'^/api': ''} }) ) }
3.備注:react腳手架的配置代理后,在請求資源時會優先請求前端資源,若沒有再請求后端資源。
感謝你能夠認真閱讀完這篇文章,希望小編分享的“react腳手架如何配置路徑別名”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。