# encoding: utf-8 module Middleman module Presentation # Helpers plugin module Helpers module CommonPlugin extend PluginApi #importable_files = %w( # .png .gif .jpg .jpeg .svg .webp # .eot .otf .svc .woff .ttf #).map { |e| Regexp.new("#{Regexp.escape(e)}$") } add_assets( File.expand_path('../../../../../vendor/assets', __FILE__) # , # importable_files: importable_files ) end end end end