mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-03-24 00:32:17 +01:00
* Adding recipe for skipthedragon/inertia-bundle:1.0 * removed class from bundles in manifest.json and not existent option from config * remove conflict * fix indentation
25 lines
692 B
JSON
25 lines
692 B
JSON
{
|
|
"bundles": {
|
|
"Rompetomp\\InertiaBundle\\InertiaBundle": ["all"]
|
|
},
|
|
"copy-from-recipe": {
|
|
"config/": "%CONFIG_DIR%/"
|
|
},
|
|
"add-lines": [
|
|
{
|
|
"file": "templates/base.html.twig",
|
|
"content": " {{ inertiaHead(page) }}",
|
|
"position": "after_target",
|
|
"target": "{% block javascripts %}",
|
|
"warn_if_missing": true
|
|
},
|
|
{
|
|
"file": "templates/base.html.twig",
|
|
"content": "\n {{ inertia(page) }}\n ",
|
|
"position": "after_target",
|
|
"target": "{% block body %}",
|
|
"warn_if_missing": true
|
|
}
|
|
]
|
|
}
|