vue.config.js 185 B

12345678
  1. const { defineConfig } = require('@vue/cli-service')
  2. module.exports = defineConfig({
  3. transpileDependencies: true,
  4. devServer: {
  5. proxy: 'http://localhost:83',
  6. port: 83
  7. }
  8. })