mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 15:35:22 +08:00
17 lines
500 B
Plaintext
17 lines
500 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 ./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
|
||
|
%>
|