1
0
silverbullet/mobile/build.py
2022-03-07 10:21:02 +01:00

6 lines
130 B
Python

import json
html = open("dist/index.html", "r").read()
f = open("bundle.json", "w")
f.write(json.dumps({"html": html}))
f.close()