@intlayer/config
Version:
Retrieve Intlayer configurations and manage environment variables for both server-side and client-side environments.
39 lines (38 loc) • 884 B
JavaScript
//#region src/defaultValues/content.ts
const FILE_EXTENSIONS = [
".content.ts",
".content.js",
".content.cjs",
".content.mjs",
".content.json",
".content.json5",
".content.jsonc",
".content.tsx",
".content.jsx",
".content.md",
".content.mdx",
".content.yaml",
".content.yml"
];
const EXCLUDED_PATHS = [
"**/node_modules/**",
"**/dist/**",
"**/build/**",
"**/.intlayer/**",
"**/.next/**",
"**/.nuxt/**",
"**/.expo/**",
"**/.vercel/**",
"**/.turbo/**",
"**/.tanstack/**",
"**/.output/**",
"**/.svelte-kit/**"
];
const CONTENT_DIR = ["."];
const CODE_DIR = ["."];
const I18NEXT_DICTIONARIES_DIR = "i18next_resources";
const REACT_INTL_MESSAGES_DIR = "intl_messages";
const WATCH = true;
//#endregion
export { CODE_DIR, CONTENT_DIR, EXCLUDED_PATHS, FILE_EXTENSIONS, I18NEXT_DICTIONARIES_DIR, REACT_INTL_MESSAGES_DIR, WATCH };
//# sourceMappingURL=content.mjs.map