2025-04-01 10:38:02 +09:00

10 lines
232 B
TypeScript

import { Accept } from 'react-dropzone';
export const acceptedFiles: Accept = {
'text/plain': ['.csv', '.txt'],
'application/json': ['.json'],
};
//This should probably set from grafana conf
export const maxFileSize = 500000;