mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
b036d370c3
* Add laravel-mail-css-inliner * fix typo * production builds Co-authored-by: David Bomba <turbo124@gmail.com>
21 lines
422 B
PHP
21 lines
422 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Css Files
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Css file of your style for your emails
|
|
| The content of these files will be added directly into the inliner
|
|
| Use absolute paths, ie. public_path('css/main.css')
|
|
|
|
|
*/
|
|
|
|
'css-files' => [
|
|
public_path('css/app.css'),
|
|
],
|
|
|
|
];
|