vue.config.js 323 B

1234567891011121314151617181920
  1. module.exports = {
  2. "transpileDependencies": [
  3. "vuetify"
  4. ],
  5. devServer: {
  6. proxy: {
  7. '/api': {
  8. // target:'http://127.0.0.1:8888',
  9. target:'http://web.410eth.com:8888',
  10. changeOrigin:true,
  11. pathRewrite:{
  12. '^/api': ''
  13. }
  14. }
  15. },
  16. },
  17. publicPath: './'
  18. }