Ruben
fixed
d68ec80
raw
history blame
252 Bytes
/** @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 };