vue.config.js 446 B

123456789101112131415161718192021
  1. module.exports = {
  2. runtimeCompiler: true,
  3. // 基本路径 3.6之前的版本时 baseUrl
  4. publicPath: "./",
  5. // 输出文件目录
  6. outputDir: "dist",
  7. // eslint-loader 是否在保存的时候检查
  8. devServer: {
  9. proxy: {
  10. '/api': {
  11. target: process.env.VUE_APP_API_URL,
  12. changeOrigin: true,
  13. ws: true,
  14. pathRewrite: {
  15. '^/api': ''
  16. }
  17. }
  18. }
  19. }
  20. };