Sha256: 89c998eed964b665428eaa5c6c86651801e052efce455ae83b2743f83bd2b281
Contents?: true
Size: 599 Bytes
Versions: 3
Compression:
Stored size: 599 Bytes
Contents
# frozen_string_literal: true module ShopifyApp class Engine < Rails::Engine engine_name 'shopify_app' isolate_namespace ShopifyApp initializer "shopify_app.assets.precompile" do |app| app.config.assets.precompile += %w[ shopify_app/redirect.js shopify_app/top_level.js shopify_app/enable_cookies.js shopify_app/request_storage_access.js storage_access.svg ] end initializer "shopify_app.middleware" do |app| app.config.middleware.insert_after(::Rack::Runtime, ShopifyApp::SameSiteCookieMiddleware) end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
shopify_app-13.1.1 | lib/shopify_app/engine.rb |
shopify_app-13.1.0 | lib/shopify_app/engine.rb |
shopify_app-13.0.1 | lib/shopify_app/engine.rb |