diff --git a/frontend/build_static.py b/frontend/build_static.py deleted file mode 100644 index 0e99e31..0000000 --- a/frontend/build_static.py +++ /dev/null @@ -1,52 +0,0 @@ -from __future__ import annotations - -from pathlib import Path - -ROOT = Path(__file__).resolve().parent -DIST = ROOT / "dist" -DIST.mkdir(exist_ok=True) - -html = r''' - - - - - QuoteJudge Studio - - - -
Loading QuoteJudge...
- - - -''' -(DIST / "index.html").write_text(html, encoding="utf-8") -print(f"wrote {DIST / 'index.html'}")