Welcome to mirror list, hosted at ThFree Co, Russian Federation.

lookbook.rb « initializers « config - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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