mirror of
https://github.com/symfony/recipes.git
synced 2026-09-11 15:16:30 +03:00
37 lines
1.0 KiB
JSON
37 lines
1.0 KiB
JSON
{
|
|
"copy-from-recipe": {
|
|
"assets/": "assets/",
|
|
"config/": "%CONFIG_DIR%/",
|
|
"importmap.php": "importmap.php"
|
|
},
|
|
"aliases": ["asset-mapper", "importmap"],
|
|
"gitignore": [
|
|
"/%PUBLIC_DIR%/assets/"
|
|
],
|
|
"add-lines": [
|
|
{
|
|
"file": "templates/base.html.twig",
|
|
"content": [
|
|
" {{ importmap() }}"
|
|
],
|
|
"position": "after_target",
|
|
"target": "{% block javascripts %}",
|
|
"warn_if_missing": true
|
|
},
|
|
{
|
|
"file": "templates/base.html.twig",
|
|
"content": [
|
|
" <link rel=\"stylesheet\" href=\"{{ asset('styles/app.css') }}\">"
|
|
],
|
|
"position": "after_target",
|
|
"target": "{% block stylesheets %}",
|
|
"warn_if_missing": true
|
|
}
|
|
],
|
|
"conflict": {
|
|
"symfony/framework-bundle": "<6.3",
|
|
"symfony/twig-bundle": "<6.3",
|
|
"symfony/flex": "<1.20.0 || >=2.0.0,<2.3.0"
|
|
}
|
|
}
|