mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 21:08:07 +01:00
17 lines
376 B
Ruby
17 lines
376 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Webpacker::ManifestExtensions
|
|
def lookup(name, pack_type = {})
|
|
asset = super
|
|
|
|
if pack_type[:with_integrity] && asset.respond_to?(:dig)
|
|
[asset['src'], asset['integrity']]
|
|
elsif asset.respond_to?(:dig)
|
|
asset['src']
|
|
else
|
|
asset
|
|
end
|
|
end
|
|
end
|
|
|
|
Webpacker::Manifest.prepend(Webpacker::ManifestExtensions)
|