I have a simple component that requires the following to setup globally...
const app = createApp(App);
app.config.globalProperties.Icons = Icons;
However, when I am constructing my Storybook story file I am unsure how to access the config property of the Vue Application Instance.
Is there a way I can set this in a Vue3 Storybook Story?