17 lines
301 B
PHP
17 lines
301 B
PHP
<?php
|
|
|
|
$path = __DIR__;
|
|
|
|
return [
|
|
'assets.normalize-css' => [
|
|
'picea' => [
|
|
'asset' => [
|
|
[
|
|
'path' => implode(DIRECTORY_SEPARATOR, [ $path, "asset", '' ]),
|
|
'order' => 10
|
|
]
|
|
]
|
|
],
|
|
],
|
|
];
|