亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

react腳手架如何配置路徑別名

發布時間:2021-09-24 11:31:43 來源:億速云 閱讀:201 作者:小新 欄目:開發技術

這篇文章主要介紹了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腳手架如何配置路徑別名”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

金秀| 长兴县| 喀喇沁旗| 古蔺县| 酒泉市| 郓城县| 交城县| 乌恰县| 桐乡市| 武陟县| 安西县| 武定县| 镇巴县| 江油市| 莱阳市| 东至县| 分宜县| 饶平县| 浦北县| 丰顺县| 呼和浩特市| 抚顺市| 九龙城区| 龙山县| 伊金霍洛旗| 久治县| 禹州市| 宝应县| 清镇市| 滕州市| 得荣县| 体育| 望谟县| 招远市| 孟村| 浦江县| 时尚| 常熟市| 临海市| 新乡市| 沅江市|