vue.config.js 203 B

1234567
  1. const { defineConfig } = require('@vue/cli-service')
  2. module.exports = defineConfig({
  3. // transpileDependencies: true,
  4. devServer: {
  5. proxy: {'/api': { target: "http://192.168.1.10:8182" }},
  6. },
  7. })