@tolinax/ayoune-interfaces 2026.20.1 → 2026.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/interfaces/IWebsite.d.ts +11 -0
- package/package.json +1 -1
package/interfaces/IWebsite.d.ts
CHANGED
|
@@ -125,4 +125,15 @@ export interface IWebsite extends IDefaultFields {
|
|
|
125
125
|
/** Custom HTML for coming soon page */
|
|
126
126
|
customHtml?: string;
|
|
127
127
|
};
|
|
128
|
+
/** Custom error page overrides served by consumer-app */
|
|
129
|
+
errorPages?: {
|
|
130
|
+
notFound?: {
|
|
131
|
+
html?: string;
|
|
132
|
+
title?: string;
|
|
133
|
+
};
|
|
134
|
+
serverError?: {
|
|
135
|
+
html?: string;
|
|
136
|
+
title?: string;
|
|
137
|
+
};
|
|
138
|
+
};
|
|
128
139
|
}
|