mirror of
https://github.com/vinliao/nashboard-old.git
synced 2025-12-17 04:35:15 +01:00
14 lines
252 B
JavaScript
14 lines
252 B
JavaScript
/** @type {string} */
|
|
let base = '';
|
|
|
|
/** @type {string} */
|
|
let assets = '';
|
|
|
|
/** @param {{ base: string, assets: string }} paths */
|
|
function set_paths(paths) {
|
|
base = paths.base;
|
|
assets = paths.assets || base;
|
|
}
|
|
|
|
export { assets, base, set_paths };
|