From 4b13f0c74fcb2bb33305c508ef898b5aafb75116 Mon Sep 17 00:00:00 2001 From: Kailash Nadh Date: Sun, 19 Sep 2021 17:10:40 +0530 Subject: [PATCH] Add public URIs to yarn dev proxy. --- frontend/vue.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/vue.config.js b/frontend/vue.config.js index ef43d47..66e5eb5 100644 --- a/frontend/vue.config.js +++ b/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' } }