summaryrefslogtreecommitdiff
path: root/config/initializers/lookbook.rb
blob: 4cb1b8272865f83e20583892d8f9636b486a9b26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

if Rails.env.development?
  # :nocov: Lookbook is only available in development
  Lookbook::ApplicationController.class_eval do
    content_security_policy false
  end

  Rails.application.configure do
    config.lookbook.experimental_features = [:pages]
    config.lookbook.page_paths = ["#{config.root}/spec/components/docs"]
  end
  # :nocov:
end