Ghost/core/shared/url-utils.js
renovate[bot] 9aa8e3e7ff
Update dependency @tryghost/url-utils to v3 (#14705)
- updated usage of url-utils.urlFor to work with v3

Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Hannah Wolfe <github.erisds@gmail.com>
2022-05-05 16:10:18 +01:00

17 lines
470 B
JavaScript

const UrlUtils = require('@tryghost/url-utils');
const config = require('./config');
const BASE_API_PATH = '/ghost/api';
const urlUtils = new UrlUtils({
getSubdir: config.getSubdir,
getSiteUrl: config.getSiteUrl,
getAdminUrl: config.getAdminUrl,
slugs: config.get('slugs').protected,
redirectCacheMaxAge: config.get('caching:301:maxAge'),
baseApiPath: BASE_API_PATH
});
module.exports = urlUtils;
module.exports.BASE_API_PATH = BASE_API_PATH;