module Lookbook::ApplicationHelper

def lookbook_asset_path(file, version: true)

def lookbook_asset_path(file, version: true)
  path = "#{Engine.host_config.relative_url_root}/lookbook-assets/#{file}".gsub("//", "/")
  version ? "#{path}?v=#{Lookbook::VERSION}" : path
end