Commit b2d90ea1 authored by Mike Greiling's avatar Mike Greiling

ensure parent entrypoint is loaded if direct one is unavailable

parent f9e33f43
......@@ -15,12 +15,18 @@ module WebpackHelper
end
route = [*controller.controller_path.split('/'), action].compact
entrypoint = "pages.#{route.join('.')}"
begin
chunks = entrypoint_paths(entrypoint, extension: 'js')
rescue Gitlab::Webpack::Manifest::AssetMissingError
# no bundle exists for this path
until chunks.any? || route.empty?
entrypoint = "pages.#{route.join('.')}"
begin
chunks = entrypoint_paths(entrypoint, extension: 'js')
rescue Gitlab::Webpack::Manifest::AssetMissingError
# no bundle exists for this path
end
route.pop
end
if chunks.empty?
chunks = entrypoint_paths("default", extension: 'js')
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment