1from pathlib import Path
2
3from plain.assets.finders import _APP_ASSETS_DIR
4from plain.runtime import APP_PATH
5
6# The tailwind.css source file is stored at the root of the repo,
7# where can see all sources in the repo and manually refer to other plain sources.
8TAILWIND_SRC_PATH: Path = APP_PATH.parent / "tailwind.css"
9
10# The compiled css goes in the root assets directory.
11# It is typically gitignored.
12TAILWIND_DIST_PATH: Path = _APP_ASSETS_DIR / "tailwind.min.css"