@sveltia/cms 0.140.7 → 0.141.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/dist/sveltia-cms.js +231 -232
- package/dist/sveltia-cms.js.map +1 -1
- package/dist/sveltia-cms.mjs +229 -230
- package/dist/sveltia-cms.mjs.map +1 -1
- package/package.json +1 -1
- package/schema/sveltia-cms.json +1 -1
- package/types/public.d.ts +5 -0
package/types/public.d.ts
CHANGED
|
@@ -2242,6 +2242,11 @@ export type CmsConfig = {
|
|
|
2242
2242
|
* details.
|
|
2243
2243
|
*/
|
|
2244
2244
|
media_libraries?: MediaLibraries;
|
|
2245
|
+
/**
|
|
2246
|
+
* Custom title for the CMS, which will be displayed on the login
|
|
2247
|
+
* page and the browser’s tab. Default: `Sveltia CMS`.
|
|
2248
|
+
*/
|
|
2249
|
+
app_title?: string;
|
|
2245
2250
|
/**
|
|
2246
2251
|
* Site URL. Default: current site’s origin
|
|
2247
2252
|
* ([`location.origin`](https://developer.mozilla.org/en-US/docs/Web/API/Location/origin)).
|