mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-02-21 11:04:47 -05:00
6 lines
161 B
JavaScript
6 lines
161 B
JavaScript
const envData = require('../../config/env.json');
|
|
|
|
const { clientLocale } = envData;
|
|
|
|
exports.pathPrefix = clientLocale === 'english' ? '' : '/' + clientLocale;
|