Open jqhr opened 1 year ago
在build.lowcode.js
配置devServer
中的proxy
,关键代码如下:
module.exports = {
devServer: {
proxy: {
'/api/': {
target: 'https://xxx.xxxxxx.com/',
changeOrigin: true
}
}
},
};
我在开发低代码引擎的设置器,官方的脚手架工具是这个,它用的就是@alib/build-scripts的版本是0.1.32。 目前我找不到build-scripts的文档,build.json如下 执行build-scripts start会报错: 现在开发要调用接口,怎么办