2021-11-15 22:13:10 -05:00
|
|
|
= cache([ActionController::Base.asset_host, user_application_theme, user_color_scheme], expires_in: 1.minute) do
|
2021-07-28 23:09:06 -04:00
|
|
|
- css_crossorigin = ActionController::Base.asset_host ? 'anonymous' : nil
|
|
|
|
|
2021-05-14 05:10:24 -04:00
|
|
|
- if ActionController::Base.asset_host
|
|
|
|
%link{ rel: 'dns-prefetch', href: ActionController::Base.asset_host }
|
|
|
|
%link{ rel: 'preconnect', href: ActionController::Base.asset_host, crossorigin: '' }
|
|
|
|
- if user_application_theme == 'gl-dark'
|
2021-07-28 23:09:06 -04:00
|
|
|
= preload_link_tag(path_to_stylesheet('application_utilities_dark'), crossorigin: css_crossorigin)
|
|
|
|
= preload_link_tag(path_to_stylesheet('application_dark'), crossorigin: css_crossorigin)
|
2021-05-14 05:10:24 -04:00
|
|
|
- else
|
2021-07-28 23:09:06 -04:00
|
|
|
= preload_link_tag(path_to_stylesheet('application_utilities'), crossorigin: css_crossorigin)
|
|
|
|
= preload_link_tag(path_to_stylesheet('application'), crossorigin: css_crossorigin)
|
|
|
|
= preload_link_tag(path_to_stylesheet("highlight/themes/#{user_color_scheme}"), crossorigin: css_crossorigin)
|
2021-11-09 01:13:00 -05:00
|
|
|
- if Gitlab::Tracking.enabled? && Gitlab::Tracking.collector_hostname
|
|
|
|
%link{ rel: 'preconnect', href: Gitlab::Tracking.collector_hostname, crossorigin: '' }
|