release: WRNexusJS 0.2.75
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@wrnexus/styles",
|
||||
"version": "0.2.74",
|
||||
"version": "0.2.75",
|
||||
"type": "module",
|
||||
"main": "src/index.ts",
|
||||
"exports": {
|
||||
|
||||
@@ -111,7 +111,29 @@ export interface PwaConfig {
|
||||
cacheName?: string;
|
||||
}
|
||||
|
||||
export type DevToolbarPosition = "bottom-center" | "bottom-left" | "bottom-right";
|
||||
|
||||
export interface DevToolbarConfig {
|
||||
enabled?: boolean;
|
||||
position?: DevToolbarPosition;
|
||||
defaultOpen?: boolean;
|
||||
keyboardShortcut?: string;
|
||||
scanOnNavigation?: boolean;
|
||||
scanOnHmr?: boolean;
|
||||
openEditor?: boolean;
|
||||
editor?: string;
|
||||
rules?: Partial<Record<string, boolean>>;
|
||||
severity?: Partial<Record<string, "error" | "warning" | "info" | "suggestion">>;
|
||||
ignoredRules?: string[];
|
||||
ignoredPaths?: string[];
|
||||
slowRequestMs?: number;
|
||||
largeImageBytes?: number;
|
||||
veryLargeImageBytes?: number;
|
||||
}
|
||||
|
||||
export interface AppConfig {
|
||||
/** Development-only page diagnostics toolbar. Enabled by default in development. */
|
||||
devToolbar?: boolean | DevToolbarConfig;
|
||||
/** Raw HTML appended to every page's `<head>` (e.g. CDN stylesheet links). */
|
||||
head?: string | string[];
|
||||
/** Global SEO defaults merged with every page's exported `meta`. */
|
||||
|
||||
Reference in New Issue
Block a user