mirror of https://github.com/artf/grapesjs.git
2 changed files with 20 additions and 6 deletions
@ -1,6 +0,0 @@ |
|||
export default { |
|||
// Style prefix
|
|||
stylePrefix: 'cm-', |
|||
|
|||
inlineCss: false, |
|||
}; |
|||
@ -0,0 +1,20 @@ |
|||
export interface CodeManagerConfig { |
|||
/** |
|||
* Style prefix. |
|||
* @default 'cm-' |
|||
*/ |
|||
stylePrefix?: string; |
|||
|
|||
/** |
|||
* Inline Css |
|||
* @default false |
|||
*/ |
|||
inlineCss?: boolean; |
|||
} |
|||
|
|||
const config: CodeManagerConfig = { |
|||
stylePrefix: 'cm-', |
|||
inlineCss: false, |
|||
}; |
|||
|
|||
export default config; |
|||
Loading…
Reference in new issue