about summary refs log tree commit diff
path: root/config/initializers/frontends.rb
blob: 2cb68cc61a00ac120506c37ea083f9ca0a6c831d (plain) (blame)
1
2
3
4
5
6
7
# Be sure to restart your server when you modify this file.

Rails.application.configure do
  frontends = []
  Rails.root.join('app', 'javascript', 'packs', 'frontends').each_child(false) { |f| frontends.push f.to_s }
  config.x.available_frontends = frontends
end