@sveltia/cms 0.98.2 → 0.99.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sveltia/cms",
3
- "version": "0.98.2",
3
+ "version": "0.99.0",
4
4
  "description": "Sveltia CMS is a modern, lightweight, Git-based headless content management system.",
5
5
  "keywords": [
6
6
  "cms",
@@ -160,6 +160,11 @@
160
160
  "description": "Absolute URL or absolute path to the site logo that will be displayed on the entrance page and the browser’s tab (favicon). A square image works best. Default: Sveltia logo.",
161
161
  "markdownDescription": "Absolute URL or absolute path to the site logo that will be displayed on the entrance page and the browser’s tab (favicon). A square image works best. Default: Sveltia logo."
162
162
  },
163
+ "logout_redirect_url": {
164
+ "type": "string",
165
+ "description": "URL to redirect users to after logging out.",
166
+ "markdownDescription": "URL to redirect users to after logging out."
167
+ },
163
168
  "show_preview_links": {
164
169
  "type": "boolean",
165
170
  "description": "Whether to show site preview links. Default: `true`.",
package/types/public.d.ts CHANGED
@@ -1920,6 +1920,10 @@ export type SiteConfig = {
1920
1920
  * Default: Sveltia logo.
1921
1921
  */
1922
1922
  logo_url?: string;
1923
+ /**
1924
+ * URL to redirect users to after logging out.
1925
+ */
1926
+ logout_redirect_url?: string;
1923
1927
  /**
1924
1928
  * Whether to show site preview links. Default: `true`.
1925
1929
  */