Files
2013-06-25 15:42:21 +08:00

14 lines
404 B
JavaScript

// Asset rack configuration
module.exports.assets = {
// A list of directories, in order, which will be recursively parsed for css, javascript, and templates
// and then can be automatically injected in your layout/views via the view partials:
// ( assets.css(), assets.js() and assets.templateLibrary() )
sequence: [
'assets/mixins',
'assets/js',
'assets/styles',
'assets/templates'
]
};