vue.config.js 354 B

12345678910111213141516
  1. module.exports = {
  2. publicPath: './',
  3. css: {
  4. },
  5. devServer: {
  6. port: 8081,
  7. proxy: {
  8. // 选项写法
  9. '/api': {
  10. target: 'http://yueshengshop.zhousi.hdlkeji.com',
  11. changeOrigin: true,
  12. rewrite: (path) => path.replace(/^\/api/, '')
  13. },
  14. }
  15. },
  16. }