Files
rustycms/types/img.json5
Peter Meier 4de99db670
Some checks failed
Deploy to Server / deploy (push) Failing after 7s
Track all types in git, sync to server on deploy
2026-03-15 14:38:37 +01:00

21 lines
389 B
Plaintext

{
name: "img",
description: "Image asset with URL and optional description (alt text)",
tags: [
"asset",
"media"
],
category: "components",
fields: {
description: {
type: "string",
description: "Alt text / description",
},
src: {
type: "string",
required: true,
description: "Image URL",
widget: "imageUrl",
},
},
}