Ghost/core/frontend/services/theme-engine/i18n/index.js
Sam Lord 76f06fae3c
Revert "Revert "Extract logging from DI patterns, only use @tryghost/logging package"" (#13884)
This reverts commit fa8c3ebe99.

Reverting the revert, which will allow us to fully switch to @tryghost/logging v2.
2021-12-14 11:22:39 +00:00

7 lines
213 B
JavaScript

const config = require('../../../../shared/config');
const ThemeI18n = require('./theme-i18n');
module.exports = new ThemeI18n({basePath: config.getContentPath('themes')});
module.exports.ThemeI18n = ThemeI18n;