From dbbd91a35091c87046c66ca4b7cb1704fc0af50e Mon Sep 17 00:00:00 2001 From: David Plankensteiner Date: Fri, 26 Jan 2024 20:43:59 +0100 Subject: [PATCH] Larger limit for html file size --- make.jl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/make.jl b/make.jl index deeb6e8..7209b51 100644 --- a/make.jl +++ b/make.jl @@ -74,7 +74,9 @@ makedocs( format=Documenter.HTML( edit_link = nothing, canonical = "https://docs.qojulia.org/", - assets = [asset("assets/favicon.png", class=:ico, islocal = true)] + assets = [asset("assets/favicon.png", class=:ico, islocal = true)], + size_threshold = 400 * 2^10, + size_threshold_warn = 300 * 2^10, ), build = builddir, sitename = "QuantumOptics.jl",