Files
sveltesociety.dev/.svelte/dev/runtime/paths.js
2021-06-24 17:24:42 +02:00

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 };