角度部署不起作用

时间:2017-10-24 20:58:46

标签: angular express deployment webpack mean-stack

我已经使用WebPack部署了我的Angular 4应用程序,但是当我尝试打开它时,我得到了这些错误 enter image description here

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'));
  }
});
...

有什么想法吗?

0 个答案:

没有答案