pleroma/app/soapbox/build_config.js
2021-09-05 13:21:39 -05:00

39 lines
807 B
JavaScript

// @preval
/**
* Build config: configuration set at build time.
* @module soapbox/build_config
*/
const { trim } = require('lodash');
const {
BACKEND_URL,
FE_SUBDIRECTORY,
FE_BUILD_DIR,
} = process.env;
const sanitizeURL = url => {
try {
return new URL(url).toString();
} catch {
return '';
}
};
const sanitizeBasename = path => {
return `/${trim(path, '/')}`;
};
const sanitizePath = path => {
return trim(path, '/');
};
// JSON.parse/stringify is to emulate what @preval is doing and avoid any
// inconsistent behavior in dev mode
const sanitize = obj => JSON.parse(JSON.stringify(obj));
module.exports = sanitize({
BACKEND_URL: sanitizeURL(BACKEND_URL),
FE_SUBDIRECTORY: sanitizeBasename(FE_SUBDIRECTORY),
FE_BUILD_DIR: sanitizePath(FE_BUILD_DIR) || 'static',
});