Explorar el Código

Add public URIs to yarn dev proxy.

Kailash Nadh hace 3 años
padre
commit
4b13f0c74f
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      frontend/vue.config.js

+ 1 - 1
frontend/vue.config.js

@@ -26,7 +26,7 @@ module.exports = {
   devServer: {
     port: process.env.LISTMONK_FRONTEND_PORT || 8080,
     proxy: {
-      '^/(api|webhooks)': {
+      '^/(api|webhooks|subscription|public)': {
         target: process.env.LISTMONK_API_URL || 'http://127.0.0.1:9000'
       }
     }