1
0
silverbullet/mobile/build.py

6 lines
130 B
Python
Raw Normal View History

2022-03-07 09:21:02 +00:00
import json
html = open("dist/index.html", "r").read()
f = open("bundle.json", "w")
f.write(json.dumps({"html": html}))
f.close()