mirror of
https://github.com/wahyd4/sohub.git
synced 2026-08-09 04:56:09 +10:00
14 lines
404 B
JavaScript
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'
|
|
]
|
|
};
|