Fix wrong host being used for custom.css when asset host configured (#19521)

local
Eugen Rochko 2 years ago committed by GitHub
parent 7926cb1bc7
commit f910f0dc92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/views/layouts/application.html.haml

@ -35,7 +35,7 @@
%meta{ name: 'style-nonce', content: request.content_security_policy_nonce }
= stylesheet_link_tag '/inert.css', skip_pipeline: true, media: 'all', id: 'inert-style'
= stylesheet_link_tag custom_css_path, host: default_url_options[:host], media: 'all'
= stylesheet_link_tag custom_css_path, skip_pipeline: true, host: root_url, media: 'all'
= yield :header_tags

Loading…
Cancel
Save