Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

vue.config.js 312B

123456789101112131415
  1. module.exports = {
  2. devServer: {
  3. proxy: {
  4. "/api": {
  5. //target: "http://localhost:57260/",
  6. target: "https://www.pvsl.co.za:86/",
  7. changeOrigin: true
  8. },
  9. "/nph-srep": {
  10. target: "http://www.unipoint-consoft.co.za",
  11. changeOrigin: true
  12. }
  13. }
  14. }
  15. };