91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

湖南省| 金坛市| 清河县| 峡江县| 吉林省| 广河县| 绍兴县| 巴马| 闵行区| 巩留县| 静安区| 万宁市| 台东市| 宁津县| 汉中市| 吉木萨尔县| 镇平县| 东安县| 京山县| 英山县| 牡丹江市| 梁山县| 庆安县| 秦皇岛市| 深水埗区| 棋牌| 大姚县| 天等县| 晋城| 新宁县| 阿拉善盟| 昌江| 龙山县| 新河县| 汕头市| 方山县| 历史| 余江县| 施秉县| 伊通| 苏尼特右旗|