@aurodesignsystem/auro-hyperlink
Version:
auro-hyperlink HTML custom element
18 lines (16 loc) • 426 B
JavaScript
/**
* Sass configuration
*
* This file configures the Sass compiler to correctly resolve import paths
* for the Auro Design System.
*/
const path = require('path');
module.exports = {
// Add node_modules to the includePaths so imports from node_modules can be resolved
includePaths: [
path.resolve(__dirname, 'node_modules'),
path.resolve(__dirname),
],
// Other Sass options...
style: 'expanded',
};