mirror of
https://github.com/grafana/grafana.git
synced 2025-07-31 05:32:15 +08:00
10 lines
232 B
TypeScript
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;
|