是否可以更改 Webpack-dev-server 的根 URL

Is it possible to change the root URL of Webpack-dev-server

我正在尝试在一个项目中使用 Webpack-dev-server,该项目涉及我模仿某个 url 结构。长话短说,有没有一种简单的方法可以让它从 http://127.0.0.1:8090/myapp rather then just http://127.0.0.1:8090

为我的文件提供服务

您要查找的是选项 publicPath

module.exports = {
  //...
  devServer: {
    publicPath: '/assets/'
  }
};

更多信息:

https://webpack.js.org/configuration/dev-server/#devserver-publicpath-