From 10cdd72cf7ac9289221f7fb7f275ae3e4637dea0 Mon Sep 17 00:00:00 2001 From: cutls Date: Thu, 1 Apr 2021 17:37:39 +0900 Subject: [PATCH] escape misktake --- app/view/make/make.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/view/make/make.js b/app/view/make/make.js index 570e7a10..b60102a5 100644 --- a/app/view/make/make.js +++ b/app/view/make/make.js @@ -133,7 +133,7 @@ function main(ver, basefile, pwa, store) { } if (pages[i] == 'setting.vue.js') { if (str) { - str = str.replace(/'/g, '\\') + str = str.replace(/'/g, "\\'") } } var regExp = new RegExp('@@' + tarKey + '@@', 'g')