当前位置:   article > 正文

vue cli3中,在vue.config.js文件中怎么引入其他js文件_vue.config.js import

vue.config.js import

1,在要被引入的文件中

module.exports = {
    interfaceIP: "http://172.16.170.135:900/PEapi"
}
  • 1
  • 2
  • 3

2,在vue.config.js中,

const interfaceIP = require('./public/configip');
console.log(interfaceIP)
console.log(interfaceIP.interfaceIP)
module.exports = {
  productionSourceMap: false,
  // 是否是生产环境
  publicPath: './',
  devServer: {
    hot: true,
    // port: 8071,
    proxy: {
      '/api': {
        target: interfaceIP.interfaceIP,
        changeOrigin: true,
        ws: true,
        pathRewrite: {
          '^/api': ''
        }
      }
    }
  },
 }
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23

target就可以写成动态的了,
3,import对应的是export或export default
require对应的是exports或module.exports

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/86163
推荐阅读
相关标签
  

闽ICP备14008679号