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