forked from sombochea/verdaccio-ui
7 lines
151 B
JavaScript
7 lines
151 B
JavaScript
|
const path = require('path');
|
||
|
|
||
|
module.exports = () => {
|
||
|
console.log('loading local theme');
|
||
|
return path.join(__dirname, '../../../', 'static');
|
||
|
};
|