mirror of
https://github.com/doocs/md.git
synced 2024-11-24 19:10:34 +08:00
b50ae32834
* update framework to uni-app * fix: bug fix * fix: bug fix * 修改输出路径 * feat: publicPath * feat: manifest update * fix: cssEditor theme * fix: style * style: format code with prettier * fix: table style & copy style on the night mode * fix: upload image * fix: style Co-authored-by: yanglbme <szuyanglb@outlook.com>
21 lines
526 B
JavaScript
21 lines
526 B
JavaScript
const fs = require("fs");
|
|
function writeManifestJson() {
|
|
fs.readFile("./src/manifest.json", function (err, data) {
|
|
if (err) {
|
|
return console.error(err);
|
|
}
|
|
const strData = data.toString();
|
|
const manifest = JSON.parse(strData);
|
|
|
|
manifest.h5.publicPath = process.env.NETLIFY ? "/" : "/md/";
|
|
const result = JSON.stringify(manifest, null, 4);
|
|
|
|
fs.writeFile("./src/manifest.json", result, function (err) {
|
|
if (err) {
|
|
console.error(err);
|
|
}
|
|
});
|
|
});
|
|
}
|
|
writeManifestJson();
|