Sha256: ff2cfef7b999ed13724ff1f8af4cb87e9d1d2ac3c16a79b82f7e9b959dcdea43
Contents?: true
Size: 697 Bytes
Versions: 24
Compression:
Stored size: 697 Bytes
Contents
# frozen_string_literal: true require "action_view/railtie" require "webpacker/react" module Playbook class Engine < ::Rails::Engine isolate_namespace Playbook config.generators do |g| g.test_framework :rspec end config.view_component.render_monkey_patch_enabled = false if config.respond_to?(:assets) config.assets.paths ||= [] config.assets.paths << Playbook::Engine.root.join("fonts") config.assets.paths << Playbook::Engine.root.join("app/pb_kits/playbook/pb_*") end if config.respond_to?(:sass) config.sass.load_paths ||= [] config.sass.load_paths << Playbook::Engine.root.join("app/pb_kits/playbook") end end end
Version data entries
24 entries across 24 versions & 1 rubygems