mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 23:54:12 -08:00
8 lines
147 B
JavaScript
8 lines
147 B
JavaScript
var path = require('path');
|
|
|
|
module.exports = function(eyeglass, sass) {
|
|
return {
|
|
sassDir: path.join(__dirname, 'assets/stylesheets')
|
|
}
|
|
};
|