let webpackConfig = {
devtool: 'cheap-module-eval-source-map',
devServer: {
historyApiFallback: true,
inline: true,
port: 9090,
host: '0.0.0.0',
compress: true,
disableHostCheck: true,
// https://webpack.github.io/docs/node.js-api.html
// https://github.com/webpack/webpack/blob/master/lib/Stats.js#L50
stats: {
chunkModules: false,
modules: false,
error: true,
errorDetails: true,
publicPath: true
},
proxy: {
'/api': {
target: 'https://api.douban.com',
pathRewrite: {
'/api': ''
},
changeOrigin: true
},
target 修改为后端地址,然后各个 jsx 文件里面直接调用这个/api,还可以解决跨域问题
能够留个联系方式嘛,请教几个问题,谢谢!
找到了 caselist/InterfaceList/InterfaceListTask,都有后端的 URL,这个能不能配置个公共变量,然后方便做分布式管理
前后端支持分布式部署不?如果部署在不同机器,如何来修改配置文件?
如果传入的参数需要做 md5、base64 转换的,这边没有考虑转换的接口?
这个项目考虑开源不?挺全面挺好用的!