Sha256: 9df2b659492429ab2b88f207e3ecd61fbad7ca8f8788539a0b7e529d6acacb1e
Contents?: true
Size: 550 Bytes
Versions: 23
Compression:
Stored size: 550 Bytes
Contents
# frozen_string_literal: true require 'spree/frontend/config' module Spree module Frontend class Engine < ::Rails::Engine config.middleware.use "Spree::Frontend::Middleware::SeoAssist" # Leave initializer empty for backwards-compatability. Other apps # might still rely on this event. initializer "spree.frontend.environment", before: :load_config_initializers do; end config.after_initialize do Spree::Frontend::Config.check_load_defaults_called('Spree::Frontend::Config') end end end end
Version data entries
23 entries across 23 versions & 1 rubygems