You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 8, 2020. It is now read-only.
I'm not sure what the best way to handle their method of injecting styles would be.
import { configureLoadStyles } from '@microsoft/load-themed-styles';
// Store registered styles in a variable used later for injection.
let _allStyles = '';
// Push styles into variables for injecting later.
configureLoadStyles((styles: string) => {
_allStyles += styles;
});
The _allStyles must be injected into a style tag:
<style>${ _allStyles}</style>
Should I create another asp-prerender-module to be included in _Layout.cshtml, or is there a more elegant (and possibly more efficient) method for doing this style/string injection?
I'm trying to use server-side prerendering with Office 365 Fabric components.
I'm not sure what the best way to handle their method of injecting styles would be.
The
_allStylesmust be injected into astyletag:Should I create another
asp-prerender-moduleto be included in_Layout.cshtml, or is there a more elegant (and possibly more efficient) method for doing this style/string injection?