diff --git a/CHANGELOG.md b/CHANGELOG.md index 515783253..8cb5cfb96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Bug fixes +* Fixed an issue that prevented Shiny from serving the `font.css` file referenced in Shiny's Bootstrap CSS file. (#1342) + ### Other changes * `Session` is now an abstract base class, and `AppSession` is a concrete subclass of it. Also, `ExpressMockSession` has been renamed `ExpressStubSession` and is a concrete subclass of `Session`. (#1331) diff --git a/shiny/ui/_html_deps_external.py b/shiny/ui/_html_deps_external.py index dbd21baa0..d8188da19 100644 --- a/shiny/ui/_html_deps_external.py +++ b/shiny/ui/_html_deps_external.py @@ -58,6 +58,7 @@ def bootstrap_deps(include_css: bool = True) -> list[HTMLDependency]: script={"src": "bootstrap.bundle.min.js"}, stylesheet={"href": "bootstrap.min.css"} if include_css else None, meta={"name": "viewport", "content": "width=device-width, initial-scale=1"}, + all_files=True, ) deps = [jquery_deps(), dep] return deps