Vue Router history模式下如何使用相对路径打包?
vue-router history模式下使用相对路径打包方案
在vue-router的history模式下,通常无法使用相对路径来进行打包。这意味着在不同的路径下部署应用时,需要分别配置不同的base路径。然而,当需要使用相对路径打包时,可以通过以下方法解决:
nginx代理配置
为了满足使用相对路径打包的需求,可以考虑使用nginx代理来实现。具体做法如下:
- 将应用程序打包成一个可以部署在任何路径上的代码包。
- 在nginx中配置代理规则,将不同的url路径代理到不同的端口上。例如:
server { listen 80; server_name example.com; location /urlA { proxy_pass http://localhost:9527; } location /urlB { proxy_pass http://localhost:9528; } }
这样,就可以通过nginx将http://example.com/urla代理到localhost:9527,将http://example.com/urlb代理到localhost:9528。