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
/** Whether to extract and bundle assets referenced in HTML. Defaults to true. */
364
364
extractAssets?:boolean;
365
+
/** Whether to ignore assets referenced in HTML and CSS with glob patterns. */
366
+
externalAssets?:string|string[];
365
367
/** Define a full absolute url to your site (e.g. https://domain.com) */
366
368
absoluteBaseUrl?:string;
367
369
/** Whether to set full absolute urls for ['meta[property=og:image]', 'link[rel=canonical]', 'meta[property=og:url]'] or not. Requires a absoluteBaseUrl to be set. Default to true. */
/** Whether to extract and bundle assets referenced in HTML. Defaults to true. */
31
31
extractAssets?: boolean;
32
+
/** Whether to ignore assets referenced in HTML and CSS with glob patterns. */
33
+
externalAssets?: string|string[];
32
34
/** Define a full absolute url to your site (e.g. https://domain.com) */
33
35
absoluteBaseUrl?: string;
34
36
/** Whether to set full absolute urls for ['meta[property=og:image]', 'link[rel=canonical]', 'meta[property=og:url]'] or not. Requires a absoluteBaseUrl to be set. Default to true. */
0 commit comments