vue.config.js 171 B

1234567891011
  1. module.exports = {
  2. publicPath: './',
  3. devServer: {
  4. proxy: {
  5. '/': {
  6. target: 'https://www.4dkankan.com',
  7. changeOrigin: true
  8. }
  9. }
  10. }
  11. }