1# Whether to redirect the original asset path to the fingerprinted path.
2ASSETS_REDIRECT_ORIGINAL: bool = True
3
4# If assets are served by a CDN, use this URL to prefix asset paths.
5# Ex. "https://cdn.example.com/assets/"
6ASSETS_CDN_URL: str = ""
7
8# Whether to log 304 Not Modified responses for assets in the access log.
9# Disabled by default to reduce noise from conditional requests.
10ASSETS_LOG_304: bool = False