mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
11 lines
296 B
Ruby
11 lines
296 B
Ruby
|
|
module WebpackImageExtension
|
|
def image_pack_path(image)
|
|
# The Webpacker::Helper#resolve_path_to_image method is incredibly useful
|
|
# for nicely fetching Webpacker image paths, but it's private.
|
|
resolve_path_to_image(image)
|
|
end
|
|
end
|
|
|
|
Webpacker::Helper.include WebpackImageExtension
|