Aller au contenu

config

Ce contenu n’est pas encore disponible dans votre langue.

function defineStudioCMSConfig(config:
| undefined
| {
componentRegistry: Record<string, string>;
dashboardConfig: {
AuthConfig: {
enabled: boolean;
providers: {
auth0: boolean;
discord: boolean;
github: boolean;
google: boolean;
usernameAndPassword: boolean;
usernameAndPasswordConfig: {
allowUserRegistration: ... | ... | ...;
};
};
};
dashboardEnabled: boolean;
dashboardRouteOverride: string;
developerConfig: {
demoMode: | false
| {
password: string;
username: string;
};
};
faviconURL: string;
inject404Route: boolean;
versionCheck: boolean;
};
dateLocale: string;
dateTimeFormat: DateTimeFormatOptions;
dbStartPage: boolean;
defaultFrontEndConfig: | boolean
| {
favicon: string;
htmlDefaultHead: {
attrs: Record<string, undefined | string | boolean>;
content: string;
tag: | "title"
| "base"
| "link"
| "style"
| "meta"
| "script"
| "noscript"
| "template";
}[];
htmlDefaultLanguage: string;
injectQuickActionsMenu: boolean;
};
imageService: {
cdnPlugin: "cloudinary-js";
};
includedIntegrations: {
robotsTXT: | boolean
| RobotsConfig;
};
overrides: {
CustomImageOverride: string;
FormattedDateOverride: string;
};
pageTypeOptions: {
html: {
sanitize: {
allowAttributes: Record<string, ...[]>;
allowComments: boolean;
allowComponents: boolean;
allowCustomElements: boolean;
allowElements: string[];
blockElements: string[];
dropAttributes: Record<string, ...[]>;
dropElements: string[];
};
};
markdown: | {
flavor: "astro";
sanitize: {
allowAttributes: Record<string, ...[]>;
allowComments: boolean;
allowComponents: boolean;
allowCustomElements: boolean;
allowElements: string[];
blockElements: string[];
dropAttributes: Record<string, ...[]>;
dropElements: string[];
};
}
| {
autoLinkHeadings: boolean;
callouts: false | "github" | "obsidian" | "vitepress";
discordSubtext: boolean;
flavor: "studiocms";
sanitize: {
allowAttributes: Record<string, ...[]>;
allowComments: boolean;
allowComponents: boolean;
allowCustomElements: boolean;
allowElements: string[];
blockElements: string[];
dropAttributes: Record<string, ...[]>;
dropElements: string[];
};
};
};
plugins: StudioCMSPlugin[];
sdk: | boolean
| {
cacheConfig: | boolean
| {
lifetime: string;
};
};
verbose: boolean;
}):
| undefined
| {
componentRegistry: Record<string, string>;
dashboardConfig: {
AuthConfig: {
enabled: boolean;
providers: {
auth0: boolean;
discord: boolean;
github: boolean;
google: boolean;
usernameAndPassword: boolean;
usernameAndPasswordConfig: {
allowUserRegistration: ... | ... | ...;
};
};
};
dashboardEnabled: boolean;
dashboardRouteOverride: string;
developerConfig: {
demoMode: | false
| {
password: string;
username: string;
};
};
faviconURL: string;
inject404Route: boolean;
versionCheck: boolean;
};
dateLocale: string;
dateTimeFormat: DateTimeFormatOptions;
dbStartPage: boolean;
defaultFrontEndConfig: | boolean
| {
favicon: string;
htmlDefaultHead: {
attrs: Record<string, undefined | string | boolean>;
content: string;
tag: | "title"
| "base"
| "link"
| "style"
| "meta"
| "script"
| "noscript"
| "template";
}[];
htmlDefaultLanguage: string;
injectQuickActionsMenu: boolean;
};
imageService: {
cdnPlugin: "cloudinary-js";
};
includedIntegrations: {
robotsTXT: | boolean
| RobotsConfig;
};
overrides: {
CustomImageOverride: string;
FormattedDateOverride: string;
};
pageTypeOptions: {
html: {
sanitize: {
allowAttributes: Record<string, ...[]>;
allowComments: boolean;
allowComponents: boolean;
allowCustomElements: boolean;
allowElements: string[];
blockElements: string[];
dropAttributes: Record<string, ...[]>;
dropElements: string[];
};
};
markdown: | {
flavor: "astro";
sanitize: {
allowAttributes: Record<string, ...[]>;
allowComments: boolean;
allowComponents: boolean;
allowCustomElements: boolean;
allowElements: string[];
blockElements: string[];
dropAttributes: Record<string, ...[]>;
dropElements: string[];
};
}
| {
autoLinkHeadings: boolean;
callouts: false | "github" | "obsidian" | "vitepress";
discordSubtext: boolean;
flavor: "studiocms";
sanitize: {
allowAttributes: Record<string, ...[]>;
allowComments: boolean;
allowComponents: boolean;
allowCustomElements: boolean;
allowElements: string[];
blockElements: string[];
dropAttributes: Record<string, ...[]>;
dropElements: string[];
};
};
};
plugins: StudioCMSPlugin[];
sdk: | boolean
| {
cacheConfig: | boolean
| {
lifetime: string;
};
};
verbose: boolean;
}

Defined in: studiocms/packages/studiocms/src/utils/defineStudioCMSConfig.ts:31

A utility function to define the StudioCMS config object. This function is used to define the optional StudioCMS config object in the Astro project root. The expected file name is studiocms.config.mjs. And it should be adjacent to the Astro project’s astro.config.mjs file.

StudioCMS will attempt to import this file and use the default export as the StudioCMS config object automatically if it exists.

Using this function is optional, but it can be useful for IDEs to provide better intellisense and type checking.

undefined |

{ componentRegistry: Record<string, string>; dashboardConfig: { AuthConfig: { enabled: boolean; providers: { auth0: boolean; discord: boolean; github: boolean; google: boolean; usernameAndPassword: boolean; usernameAndPasswordConfig: { allowUserRegistration: … | … | …; }; }; }; dashboardEnabled: boolean; dashboardRouteOverride: string; developerConfig: { demoMode: | false | { password: string; username: string; }; }; faviconURL: string; inject404Route: boolean; versionCheck: boolean; }; dateLocale: string; dateTimeFormat: DateTimeFormatOptions; dbStartPage: boolean; defaultFrontEndConfig: | boolean | { favicon: string; htmlDefaultHead: { attrs: Record<string, undefined | string | boolean>; content: string; tag: | "title" | "base" | "link" | "style" | "meta" | "script" | "noscript" | "template"; }[]; htmlDefaultLanguage: string; injectQuickActionsMenu: boolean; }; imageService: { cdnPlugin: "cloudinary-js"; }; includedIntegrations: { robotsTXT: | boolean | RobotsConfig; }; overrides: { CustomImageOverride: string; FormattedDateOverride: string; }; pageTypeOptions: { html: { sanitize: { allowAttributes: Record<string, …[]>; allowComments: boolean; allowComponents: boolean; allowCustomElements: boolean; allowElements: string[]; blockElements: string[]; dropAttributes: Record<string, …[]>; dropElements: string[]; }; }; markdown: | { flavor: "astro"; sanitize: { allowAttributes: Record<string, …[]>; allowComments: boolean; allowComponents: boolean; allowCustomElements: boolean; allowElements: string[]; blockElements: string[]; dropAttributes: Record<string, …[]>; dropElements: string[]; }; } | { autoLinkHeadings: boolean; callouts: false | "github" | "obsidian" | "vitepress"; discordSubtext: boolean; flavor: "studiocms"; sanitize: { allowAttributes: Record<string, …[]>; allowComments: boolean; allowComponents: boolean; allowCustomElements: boolean; allowElements: string[]; blockElements: string[]; dropAttributes: Record<string, …[]>; dropElements: string[]; }; }; }; plugins: StudioCMSPlugin[]; sdk: | boolean | { cacheConfig: | boolean | { lifetime: string; }; }; verbose: boolean; }

Record<string, string> = ...

Component Registry

{ AuthConfig: { enabled: boolean; providers: { auth0: boolean; discord: boolean; github: boolean; google: boolean; usernameAndPassword: boolean; usernameAndPasswordConfig: { allowUserRegistration: … | … | …; }; }; }; dashboardEnabled: boolean; dashboardRouteOverride: string; developerConfig: { demoMode: | false | { password: string; username: string; }; }; faviconURL: string; inject404Route: boolean; versionCheck: boolean; } = dashboardConfigSchema

Allows customization of the Dashboard Configuration

{ enabled: boolean; providers: { auth0: boolean; discord: boolean; github: boolean; google: boolean; usernameAndPassword: boolean; usernameAndPasswordConfig: { allowUserRegistration: … | … | …; }; }; } = authConfigSchema

Auth Configuration - Allows customization of the Authentication Configuration

boolean = ...

Auth Enabled - Allows enabling or disabling of the Authentication Configuration

Default

true

{ auth0: boolean; discord: boolean; github: boolean; google: boolean; usernameAndPassword: boolean; usernameAndPasswordConfig: { allowUserRegistration: … | … | …; }; } = authProviderSchema

Auth Providers - Allows enabling or disabling of the Authentication Providers

boolean = ...

Auth0 Auth Provider - Powered by Arctic

Requires an Auth0 Application to be created and configured using ENV Variables

Default

false

boolean = ...

Discord Auth Provider - Powered by Arctic

Requires a Discord OAuth App to be created and configured using ENV Variables

Default

false

boolean = ...

GitHub Auth Provider - Powered by Arctic

Requires a GitHub OAuth App to be created and configured using ENV Variables

Default

false

boolean = ...

Google Auth Provider - Powered by Arctic

Requires a Google OAuth App to be created and configured using ENV Variables

Default

false

boolean = ...

Username and Password Auth Provider

dashboardConfig.AuthConfig.providers.usernameAndPasswordConfig?
'Read the “', dashboardConfig.AuthConfig.providers.usernameAndPasswordConfig?, '” section'

{ allowUserRegistration: … | … | …; } = localUsernameAndPasswordConfig

dashboardConfig.AuthConfig.providers.usernameAndPasswordConfig.allowUserRegistration?
'Read the “', dashboardConfig.AuthConfig.providers.usernameAndPasswordConfig.allowUserRegistration?, '” section'

… | … | … = ...

Allow User Registration - Allows users to register an account

Default

false

boolean = ...

OPTIONAL - This allows the user to enable or disable the Astro StudioCMS dashboard but still provide all the helper’s and utilities to those who are customizing their setup, doing so will disable the dashboard and you will need to manage your content via your database

Default

true

string = ...

OPTIONAL - This allows the user to override the default dashboard route to a custom route

Note: Use with caution, this is an advanced feature

Usage

  • The default route is dashboard without any / or \ characters. If you want to override the route to /admin you would set this value to admin

Default

"dashboard"

{ demoMode: | false | { password: string; username: string; }; } = developerConfigSchema

Developer Options/Configuration

| false | { password: string; username: string; } = ...

Enable demo mode for the site

If set to an object, the site will be in demo mode, and the user will be able to login with the provided username and password.

Default

false

Example

{
demoMode: {
username: "demo_user",
password: "some-demo-password"
}
}

string = ...

OPTIONAL - This allows the user to override the default Favicon URL to a custom URL

boolean = ...

OPTIONAL - This allows the user to enable or disable the default 404 route for the dashboard

Default

true

boolean = ...

OPTIONAL - This allows the user to enable or disable the version check for the dashboard

This will check for the latest version of StudioCMS and notify the user if there is a new version available.

Default

true

string = ...

Date Locale used for formatting dates

DateTimeFormatOptions = ...

DateTime Format Options

boolean = ...

Project Initialization Page - Used during First Time Setup to initialize the database

Default

true

| boolean | { favicon: string; htmlDefaultHead: { attrs: Record<string, undefined | string | boolean>; content: string; tag: | "title" | "base" | "link" | "style" | "meta" | "script" | "noscript" | "template"; }[]; htmlDefaultLanguage: string; injectQuickActionsMenu: boolean; } = DefaultFrontEndConfigSchema

Default Frontend Configuration

Allows customization of the default frontend configuration

Default

true

{ cdnPlugin: "cloudinary-js"; } = imageServiceSchema

Allows customization of the Image Service Options

"cloudinary-js" = ...

If the user wants to use a custom Supported CDN Plugin, they can specify it here.

Currently Supported CDN Plugins: cloudinary-js

{ robotsTXT: | boolean | RobotsConfig; } = includedIntegrationsSchema

Allows enabling and disabling of the included integrations

| boolean | RobotsConfig = ...

Allows the user to enable/disable the use of the StudioCMS Custom astro-robots-txt Integration

Default

robotsTXT: { policy: [ { userAgent: ['*'], allow: ['/'], disallow: ['/dashboard/'] } ] }

{ CustomImageOverride: string; FormattedDateOverride: string; } = overridesSchema

Component Overrides - Allows for customizing the components used in StudioCMS

string = ...

Allows the user to override the default image component used in StudioCMS for rendering images.

string = ...

Allows the user to override the default formatted date component used in StudioCMS for rendering dates.

{ html: { sanitize: { allowAttributes: Record<string, …[]>; allowComments: boolean; allowComponents: boolean; allowCustomElements: boolean; allowElements: string[]; blockElements: string[]; dropAttributes: Record<string, …[]>; dropElements: string[]; }; }; markdown: | { flavor: "astro"; sanitize: { allowAttributes: Record<string, …[]>; allowComments: boolean; allowComponents: boolean; allowCustomElements: boolean; allowElements: string[]; blockElements: string[]; dropAttributes: Record<string, …[]>; dropElements: string[]; }; } | { autoLinkHeadings: boolean; callouts: false | "github" | "obsidian" | "vitepress"; discordSubtext: boolean; flavor: "studiocms"; sanitize: { allowAttributes: Record<string, …[]>; allowComments: boolean; allowComponents: boolean; allowCustomElements: boolean; allowElements: string[]; blockElements: string[]; dropAttributes: Record<string, …[]>; dropElements: string[]; }; }; } = BuiltInPageTypeOptionsSchema

Page Type Options

{ sanitize: { allowAttributes: Record<string, …[]>; allowComments: boolean; allowComponents: boolean; allowCustomElements: boolean; allowElements: string[]; blockElements: string[]; dropAttributes: Record<string, …[]>; dropElements: string[]; }; } = HTMLSchema

{ allowAttributes: Record<string, …[]>; allowComments: boolean; allowComponents: boolean; allowCustomElements: boolean; allowElements: string[]; blockElements: string[]; dropAttributes: Record<string, …[]>; dropElements: string[]; } = StudioCMSSanitizeOptionsSchema

Record<string, …[]> = ...

An object where each key is the attribute name and the value is an array of allowed tag names. Matching attributes will not be removed. All attributes that are not in the array will be dropped.

boolean = ...

A boolean value to remove HTML comments. Set to true in order to keep comments. Default is false.

boolean = ...

A boolean value to remove components and their children. If set to true, components will be subject to built-in and custom configuration checks (and will be retained or dropped based on those checks). Default is false.

boolean = ...

A boolean value to remove custom elements and their children. If set to true, custom elements will be subject to built-in and custom configuration checks (and will be retained or dropped based on those checks). Default is false

string[] = ...

An Array of strings indicating elements that the sanitizer should not remove. All elements not in the array will be dropped.

string[] = ...

An Array of strings indicating elements that the sanitizer should remove. Children will be kept.

Record<string, …[]> = ...

An object where each key is the attribute name and the value is an array of dropped tag names. Matching attributes will be removed.

string[] = ...

An Array of strings indicating elements (including nested elements) that the sanitizer should remove.

| { flavor: "astro"; sanitize: { allowAttributes: Record<string, …[]>; allowComments: boolean; allowComponents: boolean; allowCustomElements: boolean; allowElements: string[]; blockElements: string[]; dropAttributes: Record<string, …[]>; dropElements: string[]; }; } | { autoLinkHeadings: boolean; callouts: false | "github" | "obsidian" | "vitepress"; discordSubtext: boolean; flavor: "studiocms"; sanitize: { allowAttributes: Record<string, …[]>; allowComments: boolean; allowComponents: boolean; allowCustomElements: boolean; allowElements: string[]; blockElements: string[]; dropAttributes: Record<string, …[]>; dropElements: string[]; }; } = MarkdownSchema

Options for the studiocms/markdown pageType

StudioCMSPlugin[] = ...

Add Plugins to the StudioCMS

| boolean | { cacheConfig: | boolean | { lifetime: string; }; } = SDKSchema

SDKSchema is a Zod schema that validates the SDK configuration. It can either be a boolean or an object containing cache configuration.

If it is a boolean, it defaults to true and transforms into an object with default cache configuration.

If it is an object, it must contain the cacheConfig property which is validated by the SDKCacheSchema.

boolean = ...

Whether to show verbose output

Default

false

| undefined | { componentRegistry: Record<string, string>; dashboardConfig: { AuthConfig: { enabled: boolean; providers: { auth0: boolean; discord: boolean; github: boolean; google: boolean; usernameAndPassword: boolean; usernameAndPasswordConfig: { allowUserRegistration: … | … | …; }; }; }; dashboardEnabled: boolean; dashboardRouteOverride: string; developerConfig: { demoMode: | false | { password: string; username: string; }; }; faviconURL: string; inject404Route: boolean; versionCheck: boolean; }; dateLocale: string; dateTimeFormat: DateTimeFormatOptions; dbStartPage: boolean; defaultFrontEndConfig: | boolean | { favicon: string; htmlDefaultHead: { attrs: Record<string, undefined | string | boolean>; content: string; tag: | "title" | "base" | "link" | "style" | "meta" | "script" | "noscript" | "template"; }[]; htmlDefaultLanguage: string; injectQuickActionsMenu: boolean; }; imageService: { cdnPlugin: "cloudinary-js"; }; includedIntegrations: { robotsTXT: | boolean | RobotsConfig; }; overrides: { CustomImageOverride: string; FormattedDateOverride: string; }; pageTypeOptions: { html: { sanitize: { allowAttributes: Record<string, …[]>; allowComments: boolean; allowComponents: boolean; allowCustomElements: boolean; allowElements: string[]; blockElements: string[]; dropAttributes: Record<string, …[]>; dropElements: string[]; }; }; markdown: | { flavor: "astro"; sanitize: { allowAttributes: Record<string, …[]>; allowComments: boolean; allowComponents: boolean; allowCustomElements: boolean; allowElements: string[]; blockElements: string[]; dropAttributes: Record<string, …[]>; dropElements: string[]; }; } | { autoLinkHeadings: boolean; callouts: false | "github" | "obsidian" | "vitepress"; discordSubtext: boolean; flavor: "studiocms"; sanitize: { allowAttributes: Record<string, …[]>; allowComments: boolean; allowComponents: boolean; allowCustomElements: boolean; allowElements: string[]; blockElements: string[]; dropAttributes: Record<string, …[]>; dropElements: string[]; }; }; }; plugins: StudioCMSPlugin[]; sdk: | boolean | { cacheConfig: | boolean | { lifetime: string; }; }; verbose: boolean; }

studiocms.config.mjs
import { defineStudioCMSConfig } from 'studiocms';
export default defineStudioCMSConfig({
dbStartPage: true,
contentRenderer: 'marked',
verbose: true,
dateLocale: 'en-us',
// ...Other Options
})

Re-exports StudioCMSOptions