mirror of
https://github.com/SomboChea/ui
synced 2024-11-05 22:24:27 +07:00
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');
|
||
|
};
|