Skip to content

Commit

Permalink
Set size_threshold to avoid errors from makedocs()
Browse files Browse the repository at this point in the history
  • Loading branch information
johnomotani committed Oct 11, 2024
1 parent 947696d commit cf4fa8b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ using moment_kinetics, makie_post_processing, plots_post_processing

makedocs(
sitename = "moment_kinetics",
format = Documenter.HTML(prettyurls = get(ENV, "CI", nothing) == "true"),
format = Documenter.HTML(prettyurls = get(ENV, "CI", nothing) == "true",
size_threshold = 1000000,
size_threshold_warn = 500000,
),
modules = [moment_kinetics, makie_post_processing, plots_post_processing],
)

Expand Down

0 comments on commit cf4fa8b

Please sign in to comment.