mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 10:10:48 +01:00
15 lines
382 B
PHP
15 lines
382 B
PHP
<?php
|
|
|
|
return [
|
|
'default_collection' => 'posts',
|
|
|
|
'collections' => [
|
|
'posts' => [
|
|
'sheet_class' => Spatie\Sheets\Sheet::class,
|
|
'path_parser' => Spatie\Sheets\PathParsers\SlugParser::class,
|
|
'content_parser' => Spatie\Sheets\ContentParsers\MarkdownWithFrontMatterParser::class,
|
|
'extension' => 'md',
|
|
],
|
|
],
|
|
];
|