mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 13:03:50 +00:00
7 lines
186 B
TypeScript
7 lines
186 B
TypeScript
import path from 'path';
|
|
|
|
export const tmpFileDirPath =
|
|
process.env.NODE_ENV === 'production' ? '/app/tmp' : path.join(process.cwd(), 'tmp');
|
|
|
|
export const previewMaxCharCount = 3000;
|