6 lines
130 B
Python
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()
|