2021-09-12 08:51:58 -07:00
|
|
|
/**
|
|
|
|
* Static: functions related to static files.
|
|
|
|
* @module soapbox/utils/static
|
|
|
|
*/
|
|
|
|
|
|
|
|
import { join } from 'path';
|
2022-01-10 14:25:06 -08:00
|
|
|
|
2021-09-12 08:51:58 -07:00
|
|
|
import { FE_SUBDIRECTORY } from 'soapbox/build_config';
|
|
|
|
|
|
|
|
export const joinPublicPath = (...paths) => {
|
|
|
|
return join(FE_SUBDIRECTORY, ...paths);
|
|
|
|
};
|