我的webpack包不与Express app.get('/ *')一起发送

时间:2017-05-19 11:30:57

标签: node.js express webpack

我有一个随我的index.html附加的bundle.js文件。我首先使用动态路径:

app.get('/*', function(req, res) {

      res.sendFile(path.join(__dirname + '/src/index.html'));

  });

当我连接到localhost:8080 / something时,会发送html但是应该显示该bundle的div是空的。

但是当我将路径更改为静态路径(如app.get('/',..))并连接到localhost:8080 /时,将显示该捆绑包。

如何使用动态路径进行此操作?

0 个答案:

没有答案