vue.config.js 613 B

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