release: WRNexusJS 0.7.0

This commit is contained in:
2026-08-01 10:04:42 +05:30
parent c54144f2e4
commit 87507edf59
207 changed files with 12607 additions and 679 deletions
+8 -2
View File
@@ -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 {