mirror of
https://github.com/discourse/discourse.git
synced 2025-01-21 09:34:00 +08:00
818bf1355d
Amended plugin interfaces so they work with the vk sample
18 lines
531 B
Plaintext
18 lines
531 B
Plaintext
// Manifest
|
|
//
|
|
//= require ./vendor/normalize
|
|
//= require ./vendor/bootstrap
|
|
//= require ./foundation/base
|
|
//= require ./vendor/font_awesome/font-awesome
|
|
//= require ./vendor/chosen
|
|
//= require_tree ./components
|
|
//= require_tree ./application
|
|
//= require ./foundation/helpers
|
|
<%
|
|
# TODO this is very tricky, we want to add a dependency here on files that may not yet exist
|
|
# otherwise in dev we are often stuck nuking the tmp/cache directory
|
|
DiscoursePluginRegistry.stylesheets.each do |css|
|
|
require_asset(css)
|
|
end
|
|
%>
|