I have a notification that looks like this:
<kendo-notification name="notifications" stacking="NotificationStackingSettings.Down" auto-hide-after="2500">
    <position pinned="true" top="30" right="30" />
    <popup-animation>
        <open duration="700" />
        <close duration="250" />
    </popup-animation>
    <templates>
        <notification-template type="success" template='<p class="text-lead"><i class="fas fa-check-circle"></i> #=message#</p>'>
        </notification-template>
        <notification-template type="error" template='<p class="text-lead"><i class="fas fa-exclamation-circle"></i> #=message#</p>'>
        </notification-template>
    </templates>
</kendo-notification>
I want to avoid using unsafe-eval in the Content Security Policy. How do I convert the templates? The instructions given here are not clear in this case. I want to avoid using a client-side handler if possible.
Thank you

Hi Daniel,
I'm currently in the midst of an investigation and I will provide you with an update. In regard to my findings.
I will update this thread shortly.