vue.config.js 217 B

12345678910111213
  1. module.exports = {
  2. outputDir: 'dist',
  3. publicPath: '/admin/',
  4. devServer: {
  5. port: 8082,
  6. proxy: {
  7. '/api': {
  8. target: 'http://192.168.16.18:8080',
  9. changeOrigin: true
  10. }
  11. }
  12. }
  13. }