mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-19 01:01:27 -04: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;
|