Files
symfony-flex-recipes-contrib/pentatrion/vite-bundle/1.0/manifest.json
T

31 lines
950 B
JSON

{
"bundles": {
"Pentatrion\\ViteBundle\\PentatrionViteBundle": ["all"]
},
"copy-from-package": {
"install/assets/": "assets/",
"install/package.json": "package.json",
"install/vite.config.js": "vite.config.js"
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"gitignore": ["/node_modules/", "/%PUBLIC_DIR%/build/"],
"add-lines": [
{
"file": "templates/base.html.twig",
"content": " {{ vite_entry_script_tags('app') }}",
"position": "after_target",
"target": "{% block javascripts %}",
"warn_if_missing": true
},
{
"file": "templates/base.html.twig",
"content": " {{ vite_entry_link_tags('app') }}",
"position": "after_target",
"target": "{% block stylesheets %}",
"warn_if_missing": true
}
]
}