mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
5f5f0021db
no issue - support ends today - see https://github.com/nodejs/Release - removed `use strict`
8 lines
226 B
JavaScript
8 lines
226 B
JavaScript
const config = require('../../config'),
|
|
UrlService = require('./UrlService'),
|
|
urlService = new UrlService({
|
|
disableUrlPreload: config.get('disableUrlPreload')
|
|
});
|
|
|
|
// Singleton
|
|
module.exports = urlService;
|