mirror of
https://github.com/discourse/discourse.git
synced 2025-09-08 12:06:51 +08:00
DEV: load styleguide assets only when needed (#10918)
This commit is contained in:
parent
74de7a49f5
commit
73d207a568
3 changed files with 31 additions and 0 deletions
|
@ -13,3 +13,9 @@ load File.expand_path('../lib/styleguide/engine.rb', __FILE__)
|
|||
Discourse::Application.routes.append do
|
||||
mount ::Styleguide::Engine, at: '/styleguide'
|
||||
end
|
||||
|
||||
after_initialize do
|
||||
register_asset_filter do |type, request|
|
||||
request&.fullpath&.start_with?('/styleguide')
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue