mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 18:14:17 +00:00
19 lines
344 B
TypeScript
19 lines
344 B
TypeScript
const path = require('path');
|
|
|
|
export const projectRoot = (relativePath) => {
|
|
return path.resolve(__dirname, '..', relativePath);
|
|
};
|
|
|
|
export const globalCSSImports = () => {
|
|
return [
|
|
projectRoot('src/styles/_variables.scss'),
|
|
projectRoot('src/styles/_mixins.scss'),
|
|
];
|
|
};
|
|
|
|
|
|
module.exports = {
|
|
projectRoot,
|
|
globalCSSImports
|
|
};
|