8b4b9ef8da
Forcing "type" to be explicit, works best will rollup on the frontend to exclude depdendencies
15 lines
361 B
TypeScript
15 lines
361 B
TypeScript
import { type Settings } from './interfaces/settings.interface';
|
|
|
|
export const settings: Settings = {
|
|
storage: {
|
|
imageCropSizes: {
|
|
'profile-picture': ['original'],
|
|
'workspace-logo': ['original'],
|
|
'person-picture': ['original'],
|
|
},
|
|
maxFileSize: '10MB',
|
|
},
|
|
minLengthOfStringForDuplicateCheck: 3,
|
|
maxVisibleViewFields: 30,
|
|
};
|