54 lines
1.9 KiB
TypeScript
54 lines
1.9 KiB
TypeScript
export default () => ({
|
|
upload: {
|
|
config: {
|
|
provider: "cloudinary",
|
|
|
|
providerOptions: {
|
|
cloud_name: process.env.CLOUDINARY_NAME,
|
|
api_key: process.env.CLOUDINARY_KEY,
|
|
api_secret: process.env.CLOUDINARY_SECRET,
|
|
},
|
|
|
|
actionOptions: {
|
|
upload: {},
|
|
delete: {},
|
|
},
|
|
|
|
sizeLimit: 10 * 1024 * 1024, // 10mb byte-tan
|
|
},
|
|
},
|
|
|
|
"icons-field": {
|
|
enabled: true,
|
|
config: {
|
|
icons: [
|
|
{
|
|
name: "bonbilla",
|
|
svg: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="currentColor" d="M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2m-3-3h6c.55 0 1-.45 1-1s-.45-1-1-1H9c-.55 0-1 .45-1 1s.45 1 1 1m3-17C7.86 2 4.5 5.36 4.5 9.5c0 3.82 2.66 5.86 3.77 6.5h7.46c1.11-.64 3.77-2.68 3.77-6.5C19.5 5.36 16.14 2 12 2"/></svg>',
|
|
},
|
|
{
|
|
name: "arkatza",
|
|
svg: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="currentColor" d="M3 17.25V21h3.75L17.81 9.94l-3.75-3.75zM5.92 19H5v-.92l9.06-9.06l.92.92zM20.71 5.63l-2.34-2.34c-.2-.2-.45-.29-.71-.29s-.51.1-.7.29l-1.83 1.83l3.75 3.75l1.83-1.83a.996.996 0 0 0 0-1.41"/></svg>',
|
|
},
|
|
{
|
|
name: "sobrea",
|
|
svg: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="currentColor" d="M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2m-.4 4.25l-6.54 4.09c-.65.41-1.47.41-2.12 0L4.4 8.25a.85.85 0 1 1 .9-1.44L12 11l6.7-4.19a.85.85 0 1 1 .9 1.44"/></svg>',
|
|
},
|
|
],
|
|
},
|
|
},
|
|
"webp-converter": {
|
|
enabled: true,
|
|
|
|
config: {
|
|
// mimeTypes that converts to WebP. Default is ['image/png', 'image/jpeg', 'image/jpg']
|
|
|
|
mimeTypes: undefined,
|
|
|
|
options: {
|
|
// WebP options: https://sharp.pixelplumbing.com/api-output#webp
|
|
},
|
|
},
|
|
},
|
|
});
|