Skip to content

Commit

Permalink
fix: JSON format
Browse files Browse the repository at this point in the history
  • Loading branch information
JimQing committed Feb 28, 2021
1 parent ee1dc69 commit 3d169ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vue.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function writeManifestJson() {

manifest.h5.publicPath =
process.env.SERVER_ENV !== "NETLIFY" ? "/md/" : "/";
const result = JSON.stringify(manifest, null, 4);
const result = JSON.stringify(manifest, null, 2);

fs.writeFile("./src/manifest.json", result, function (err) {
if (err) {
Expand Down

0 comments on commit 3d169ff

Please sign in to comment.