Configuration settings

Wireframe API configuration settings are available directly via module config, but you can also define (or override) them via the $config->wireframeAPI array.

Here's an example of overriding the enabled endpoints setting via $config->wireframeAPI and an array of your own:

$config->wireframeAPI = [
    'enabled_endpoints' => [
        'components',
        'pages',
        'partials',
    ],
];
Back to top