Files
symfony-flex-recipes-contrib/pentatrion/vite-bundle/6.5/manifest.json
T
Hugues TavernierandGitHub d8de5757bf Update/vite bundle 7 (#1652)
* update recipe for ViteBundle 7

* update recipe for ViteBundle v7 to v6.4.7

* vite-bundle fix typo error

* changing vite-bundle version from patch to minor
2024-08-03 13:45:51 +02:00

29 lines
974 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",
"install/config/routes/pentatrion_vite.yaml": "config/routes/pentatrion_vite.yaml"
},
"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
}
]
}