UNPKG

@envelop/preload-assets

Version:

Inject a function for registering assets that should be preloaded on the client. The registered assets will be added under the `extensions.preloadAssets` key on the execution result.

6 lines (5 loc) 217 B
import { Plugin } from '@envelop/core'; export type UsePreloadAssetsOpts = { shouldPreloadAssets?: (context: unknown) => boolean; }; export declare const usePreloadAssets: (opts?: UsePreloadAssetsOpts) => Plugin;