From b054ed5adc12490df7736c5c42aa512cc4a3a04b Mon Sep 17 00:00:00 2001 From: Kailash Nadh Date: Sun, 18 Oct 2020 23:10:48 +0530 Subject: [PATCH] Fix inconsistent quotes in Vue config --- frontend/vue.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/vue.config.js b/frontend/vue.config.js index 3a517bb..cde12b9 100644 --- a/frontend/vue.config.js +++ b/frontend/vue.config.js @@ -18,8 +18,8 @@ module.exports = { devServer: { port: process.env.LISTMONK_FRONTEND_PORT || 8080, proxy: { - "^/api": { - target: process.env.LISTMONK_API_URL || "http://127.0.0.1:9000" + '^/api': { + target: process.env.LISTMONK_API_URL || 'http://127.0.0.1:9000' } } }