From bb43983079f3606a8d409034268365918164821d Mon Sep 17 00:00:00 2001 From: JimQing Date: Sun, 28 Feb 2021 08:43:57 +0000 Subject: [PATCH] style: prettify code --- vue.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vue.config.js b/vue.config.js index 21ee4ac..5845b63 100644 --- a/vue.config.js +++ b/vue.config.js @@ -7,7 +7,8 @@ function writeManifestJson() { const strData = data.toString(); const manifest = JSON.parse(strData); - manifest.h5.publicPath = process.env.SERVER_ENV !== "NETLIFY" ? "/md/" : "/"; + manifest.h5.publicPath = + process.env.SERVER_ENV !== "NETLIFY" ? "/md/" : "/"; const result = JSON.stringify(manifest, null, 2); fs.writeFile("./src/manifest.json", result, function (err) {