mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-14 06:43:25 +08:00
9 lines
135 B
JavaScript
9 lines
135 B
JavaScript
let config = {
|
|
securityLevel: 'strict'
|
|
}
|
|
|
|
export const setConfig = conf => {
|
|
config = conf
|
|
}
|
|
export const getConfig = () => config
|