File size: 252 Bytes
ec3efd7
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** @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 };