Sistema de controles da União de Ciclistas do Brasil
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 

72 lines
2.3 KiB

<?php
return [
/*
|--------------------------------------------------------------------------
| SVG Path
|--------------------------------------------------------------------------
|
| This value is the path to the directory of individual SVG files. This
| path is then resolved internally. Please ensure that this value is
| set relative to the root directory and not the public directory.
|
*/
'svg_path' => 'resources/svg',
/*
|--------------------------------------------------------------------------
| Spritesheet Path
|--------------------------------------------------------------------------
|
| If you would rather have one spritesheet than a lot of individual SVG
| files, you may specify a path to a spritesheet. The SVG images are
| extracted from this spritesheet to be rendered out individually.
|
*/
'spritesheet_path' => 'resources/svg/spritesheet.svg',
/*
|--------------------------------------------------------------------------
| Spritesheet URL
|--------------------------------------------------------------------------
|
| If you don't want to embed the spritesheet directly in your markup and
| would rather reference an external URL, you can specify the path to
| the external spritesheet to use with this configuration option.
|
*/
'spritesheet_url' => '',
/*
|--------------------------------------------------------------------------
| Inline Rendering
|--------------------------------------------------------------------------
|
| This value will determine whether or not the SVG should be rendered inline
| or if it should reference a spritesheet through a <use> element.
|
| Default: true
|
*/
'inline' => true,
/*
|--------------------------------------------------------------------------
| Optional Class
|--------------------------------------------------------------------------
|
| If you would like to have CSS classes applied to your SVGs, you must
| specify them here. Much like how you would define multiple classes
| in an HTML attribute, you may separate each class using a space.
|
| Default: ''
|
*/
'class' => '',
];