Merge branch 'master' of github.com:mozilla/connect-cachify

This commit is contained in:
Austin King 2012-02-11 09:03:12 -08:00
Родитель 7f231e19f9 58119a22db
Коммит 9925745f63
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -29,11 +29,11 @@ This does not provide in-memory caching, middleware caching, or many other types
]
},
css: {
"home.min.css": [
"/css/home.min.css": [
'/css/reset.css',
'/css/home.css'
],
"dashboard.min.css": [
"/css/dashboard.min.css": [
'/css/reset.css',
'/css/common.css'
'/css/dashboard.css'
@ -56,7 +56,7 @@ It's encouraged to reuse the ``js`` and ``css`` config with other connect compil
...
<head>
<title>Dashboard: Hamsters of North America</title>
<%- cachify_css('dashboard.min.css') %>
<%- cachify_css('/css/dashboard.min.css') %>
</head>
<body>
...