Bootstrap

vue项目通过Hbuild 打包成apk文件

一,修改基本配置
  • vue.config.js文件,注释代理配置
  • publicPath 改成 ‘./’
//vue.config.js

module.exports = {
   
  publicPath: "./",
  //outputDir: "dist", // 输出文件目录
  //assetsDir: "static", // 配置js、css静态资源二级目录的位置
  devServer: {
   
    open: true, //设置启动项目时默认打开浏览器
    // proxy: {
   
    //   "/api": {
   
    //     //target: 'http://192.168.0.136:8080',
    //     target: "http://120.197.144.207:8080",
    //     changeOrigin: true,
    
;