我已经使用WebPack部署了我的Angular 4应用程序,但是当我尝试打开它时,我得到了这些错误
index.js
...
app.get('*', (req, res) => {
if (process.env.live) {
res.sendFile(path.join(__dirname + '/dist/index.html'));
} else {
res.sendFile(path.join(__dirname + '/client/src/index.html'));
}
});
...
有什么想法吗?