File size: 353 Bytes
780c9fe |
1 2 3 4 5 6 7 8 9 10 11 12 |
import { correctContentPathFromEnv, parseEnvValue } from "./utils.js";
export const CONTENT_ROOT = correctContentPathFromEnv("CONTENT_ROOT");
export const CONTENT_TRANSLATED_ROOT = correctContentPathFromEnv(
"CONTENT_TRANSLATED_ROOT",
);
export const MAX_FILE_SIZE = parseEnvValue(
process.env.FILECHECK_MAX_FILE_SIZE || 500 * 1024, // 500KiB
);
|