vue.config.js 260 B

12345678910111213141516
  1. const baseUrl = '/'
  2. module.exports = {
  3. publicPath: baseUrl,
  4. productionSourceMap: false,
  5. devServer: {
  6. port: 4000,
  7. proxy: {
  8. '/api/': {
  9. target: 'http://localhost:7001'
  10. // target: 'http://192.168.4.1:7001'
  11. }
  12. }
  13. }
  14. }