vue.config.js 269B

12345678910111213
  1. const { defineConfig } = require('@vue/cli-service')
  2. module.exports = defineConfig({
  3. publicPath: '.',
  4. transpileDependencies: true,
  5. devServer: {
  6. proxy: {
  7. '/api': {
  8. target: 'http://localhost:9000/',
  9. changeOrigin: true
  10. }
  11. }
  12. }
  13. })