1.在static目录下新建config.js文件

window.g = {
    BASE_URL: "https://localhost:111"
}

在index.html文件中引入此js

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width,initial-scale=1.0">
    <!-- 引入配置文件-->
    <script type=text/javascript src="/static/config.js"></script>
    <title></title>
  </head>
  <body>
    <div id="app"></div>
    <!-- built files will be auto injected -->
  </body>
</html>

.vue文件中访问方法

 axios.get(window.g.BASE_URL+'/api/Default/GetAllCustomerName?keyword='+query)

打包出来的文件目录
在这里插入图片描述
2.目录结构在这里插入图片描述
打开build下的webpack.prod.conf.js,删掉所有[某某hash],如图我注释掉了,打包好后将生成app.js,app.css等在这里插入图片描述

Logo

前往低代码交流专区

更多推荐