Skip to content

Commit

Permalink
Reorder loaders
Browse files Browse the repository at this point in the history
  • Loading branch information
APB9785 committed Jan 12, 2024
1 parent 6e9bb7f commit bcafff4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/beacon/loader.ex
Original file line number Diff line number Diff line change
Expand Up @@ -131,11 +131,11 @@ defmodule Beacon.Loader do
:ok <- load_components(site),
:ok <- load_snippet_helpers(site),
:ok <- load_layouts(site),
:ok <- load_data_source(site)
:ok <- load_pages(site),
:ok <- load_error_pages(site),
:ok <- load_stylesheets(site),
:ok <- load_runtime_css(site),
:ok <- load_data_source(site) do
:ok <- load_runtime_css(site) do
:ok
else
_ -> raise Beacon.LoaderError, message: "failed to load resources for site #{site}"
Expand Down

0 comments on commit bcafff4

Please sign in to comment.