Files
ncd-fe/packages/nicolium/src/utils/static.ts
nicole mikołajczyk b88a638e25 nicolium rename stuff
Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
2026-02-27 01:04:14 +01:00

14 lines
372 B
TypeScript

/**
* Static: functions related to static files.
* @module @/utils/static
*/
import { join } from 'path-browserify';
import * as BuildConfig from '@/build-config';
/** Gets the path to a file with build configuration being considered. */
const joinPublicPath = (...paths: string[]): string => join(BuildConfig.FE_SUBDIRECTORY, ...paths);
export { joinPublicPath };