最佳答案
我正在创建一个应用程序,在开发中使用 webpack-dev-server 和 response-router。
Webpack-dev-server 似乎是基于这样的假设构建的: 您将在一个位置(即“/”)有一个公共入口点,而 response-router 允许无限量的入口点。
我希望获得 webpack-dev-server 的好处,特别是热重载特性,这对生产力非常有用,但是我仍然希望能够加载在 response-router 中设置的路由。
How could one implement it such that they work together? Could you run an express server in front of webpack-dev-server in such a way to allow this?