We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 04f753b + 3a813db commit 86764a5Copy full SHA for 86764a5
packages/framework/src/Foundation/Providers/ConfigurationServiceProvider.php
@@ -21,7 +21,10 @@ public function initialize(): void
21
22
public function register(): void
23
{
24
- //
+ $this->mergeConfigFrom(__DIR__.'/../../../config/hyde.php', 'hyde');
25
+ $this->mergeConfigFrom(__DIR__.'/../../../config/docs.php', 'docs');
26
+ $this->mergeConfigFrom(__DIR__.'/../../../config/site.php', 'site');
27
+ $this->mergeConfigFrom(__DIR__.'/../../../config/markdown.php', 'markdown');
28
}
29
30
public function boot(): void
0 commit comments