Use site config option inside a blueprint

Hi! I want to use a string stored in config site options in a blueprint “Before” option. Is this possible?
Best.

Yes:
Config.php

    'my-string' => 'hi',

Blueprint:

somefield:
  type: text
  before: "{{ kirby.option('my-string')}}"
1 Like

Thanks @texnixe a lot!