mirror of
https://github.com/LukeHagar/sveltesociety.dev.git
synced 2025-12-07 12:47:45 +00:00
13 lines
231 B
JavaScript
13 lines
231 B
JavaScript
/** @type {string} */
|
|
let base = '';
|
|
|
|
/** @type {string} */
|
|
let assets = '/.';
|
|
|
|
/** @param {{ base: string, assets: string }} paths */
|
|
function set_paths(paths) {
|
|
({ base, assets } = paths);
|
|
}
|
|
|
|
export { assets, base, set_paths };
|