欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

React 配置全局变量

程序员文章站 2024-01-22 09:17:10
...

React 配置全局变量

使用webpack,您可以将env特定的配置放在webpack.config.js中的externals字段中

externals: {
  'Config': JSON.stringify(process.env.ENV === 'production' ? {
    serverUrl: "https://myserver.com"
  } : {
    serverUrl: "http://localhost:8090"
  })
}

然后在你的模块中,你可以使用config:

var Config = require(‘Config’)
fetchData(Config.serverUrl + ‘/Enterprises/…’)