设置Web页面基本路径
通常,web应用程序静态页面的基本路径是http://localhost:8080/
要修改基本路径为http://localhost:8080/html/,方法如下:
在vue.config.js中增加以下配置项:
module.exports = { publicPath: ‘/html/‘ } |
原文:https://www.cnblogs.com/micemik/p/13413446.html