Files
2025-02-07 08:21:14 -06: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;