vue.config.js 686 B

123456789101112131415161718192021222324252627
  1. const { defineConfig } = require('@vue/cli-service')
  2. module.exports = defineConfig({
  3. transpileDependencies: true,
  4. //基本路径
  5. publicPath: './', //默认的'/'是绝对路径,如果不确定在根路径,改成相对路径'./'
  6. // 输出文件目录
  7. outputDir: 'dist',
  8. //endOfLine: 'auto',
  9. lintOnSave: false,
  10. devServer: {
  11. port: 8087, // 端口
  12. open: false, //自动在浏览器中打开
  13. proxy: {
  14. '/api': {
  15. target: 'http://localhost:5239/api',
  16. //target: "http://dhiot.teruishuo.com/api",
  17. changeOrigin: true, //是否跨域,肯定true
  18. pathRewrite: { //重写请求中的/api为空
  19. '^/api': ''
  20. }
  21. },
  22. }
  23. },
  24. })