mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-09 17:42:03 +05:30
24 lines
663 B
JavaScript
24 lines
663 B
JavaScript
/* eslint-env node */
|
|
/* eslint-disable @typescript-eslint/no-var-requires */
|
|
|
|
const path = require('path');
|
|
|
|
require('dotenv').config();
|
|
|
|
const { env } = process;
|
|
|
|
module.exports = {
|
|
version: env.VERSION || env.NODE_ENV,
|
|
apiHost: env.API_HOST || 'https://dev.account.ely.by',
|
|
ga: env.GA_ID && { id: env.GA_ID },
|
|
sentryDSN: env.SENTRY_DSN,
|
|
crowdin: {
|
|
apiKey: env.CROWDIN_API_KEY,
|
|
projectId: 350687,
|
|
filePath: 'accounts/site.json',
|
|
sourceLang: 'en',
|
|
basePath: path.resolve(`${__dirname}/packages/app/i18n`),
|
|
minApproved: 80, // Minimal ready percent before translation can be published
|
|
},
|
|
};
|