release: WRNexusJS 0.7.0
This commit is contained in:
@@ -165,6 +165,10 @@ export interface ObservabilityConfig {
|
||||
sampleRate?: number;
|
||||
exporter?: "console" | "otlp" | "none";
|
||||
endpoint?: string;
|
||||
/** Collect privacy-preserving Core Web Vitals from real browsers. */
|
||||
webVitals?: boolean;
|
||||
/** Same-origin endpoint receiving Web Vitals. */
|
||||
webVitalsEndpoint?: string;
|
||||
}
|
||||
|
||||
export interface TenancyConfig {
|
||||
@@ -184,11 +188,13 @@ export interface BuildConfig {
|
||||
|
||||
export interface NavigationConfig {
|
||||
/**
|
||||
* `client` progressively enhances same-origin links with in-place page swaps.
|
||||
* `auto` (default) omits navigation JavaScript from fully static pages and
|
||||
* progressively enhances routes that already need browser behavior.
|
||||
* `client` always enhances same-origin links with in-place page swaps.
|
||||
* `document` keeps normal browser navigation so every route performs a fresh
|
||||
* server-rendered document request.
|
||||
*/
|
||||
mode?: "client" | "document";
|
||||
mode?: "auto" | "client" | "document";
|
||||
}
|
||||
|
||||
export interface ImportsConfig {
|
||||
|
||||
Reference in New Issue
Block a user