访问与端口号问题
npm run dev启动项目的端口号
修改package.json
{
"scripts": {
"dev": "vue-cli-service serve --port 8107"
}
)
打包后空白页面的问题
如果是放在虚拟目录下,修改vue.config.js文件配置的项目路径,然后重新打包
module.exports = {
publicPath: './'
}
跨域问题
修改vue.config.js
module.exports = {
assetsDir: "h5",
devServer:{
proxy:{
"/" : {
ws: true, // 跨域使用WS
target: "http://主机:nginx端口/",
changeOrigin: true
},
"/wechat" : {
ws: true, // 跨域使用WS
target: "http://主机:nginx端口/wechat",
changeOrigin: true
},
"/index" : {
ws: true, // 跨域使用WS
target: "http://主机:nginx端口/index",
changeOrigin: true
}
}
}
}