xref: /plugin/mermaid/conf/default.php (revision b566ae41d43f34982a49c783a4196e63d98ad341)
1<?php
2/**
3 * Default configuration for the DokuWiki Mermaid plugin.
4 *
5 * @package DokuWiki\Plugin\Mermaid
6 */
7
8declare(strict_types=1);
9
10if (!defined('DOKU_INC')) {
11    die();
12}
13
14require_once __DIR__ . '/config_keys.php';
15
16$conf = [
17    CONFIG_LOCATION  => 'latest',
18    CONFIG_THEME     => 'default',
19    CONFIG_LOOK      => 'classic',
20    CONFIG_LOG_LEVEL => 'error'
21];