Plain
Get Started Source + Docs Dev Updates
BSD-3 v0.130.1
Log in
Get Started Source + Docs Dev Updates BSD-3 v0.130.1
Documentation
Core
agents
assets
chores
cli
csrf
forms
http
internal
logs
packages
preflight
runtime
server
signals
templates
test
urls
utils
views
CHANGELOG.md
README.md
debug.py
exceptions.py
json.py
paginator.py
signing.py
validators.py
Packages
admin
api
auth
cache
code
dev
elements
email
esbuild
flags
htmx
jobs
loginlink
oauth
observer
pages
pageviews
passwords
portal
postgres
pytest
redirection
scan
sessions
start
support
tailwind
agents
templates
CHANGELOG.md
README.md
cli.py
core.py
default_settings.py
entrypoints.py
templates.py
toolbar
tunnel
vendor
Core
agents
assets
chores
cli
csrf
forms
http
internal
logs
packages
preflight
runtime
server
signals
templates
test
urls
utils
views
CHANGELOG.md
README.md
debug.py
exceptions.py
json.py
paginator.py
signing.py
validators.py
Packages
admin
api
auth
cache
code
dev
elements
email
esbuild
flags
htmx
jobs
loginlink
oauth
observer
pages
pageviews
passwords
portal
postgres
pytest
redirection
scan
sessions
start
support
tailwind
agents
templates
CHANGELOG.md
README.md
cli.py
core.py
default_settings.py
entrypoints.py
templates.py
toolbar
tunnel
vendor
Loading
Docs plain-tailwind plain tailwind default_settings.py
Raw LLM
 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"
On this page