gpt4 book ai didi

angularjs - angular2-webpack-starter 如何将 NodeJS 服务器添加到项目中

转载 作者:太空宇宙 更新时间:2023-11-03 22:11:48 25 4
gpt4 key购买 nike

我克隆了一个 angular2-webpack-starter 项目,它运行良好;现在我想向这个项目添加一个单独的 NodeJS 服务器(我需要用 NodeJS 模拟一些数据作为后端),但不知道如何以及从哪里开始,有人可以帮忙吗?

最佳答案

此问题已解决,只需在 config/webpack.dev.js 中配置 devServer 的代理即可:

module.exports = {
entry:{...},
...
devServer: {
host: 'localhost',
port: 8086, //frontend port
historyApiFallback: true,
noInfo: true,
watchOptions: {
aggregateTimeout: 300,
poll: 100
},
outputPath: '/',
proxy: {
'/api/*': { //backend url prefix, some thing like '/api/users/:userId'
target: 'http://localhost:3000', // backend host and port
secure: false
}
}
}
};

关于angularjs - angular2-webpack-starter 如何将 NodeJS 服务器添加到项目中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40172427/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com