mirror of
https://github.com/symfony/recipes.git
synced 2026-09-11 15:16:30 +03:00
26 lines
714 B
JSON
26 lines
714 B
JSON
{
|
|
"bundles": {
|
|
"Symfonycasts\\SassBundle\\SymfonycastsSassBundle": ["all"]
|
|
},
|
|
"copy-from-recipe": {
|
|
"config/": "%CONFIG_DIR%/",
|
|
"assets/": "assets/"
|
|
},
|
|
"aliases": ["symfonycasts_sass"],
|
|
"gitignore": [
|
|
"/%PUBLIC_DIR%/assets/"
|
|
],
|
|
"add-lines": [
|
|
{
|
|
"file": "config/packages/asset_mapper.yaml",
|
|
"content": "\n excluded_patterns:\n - '*/assets/styles/_*.scss'\n - '*/assets/styles/**/_*.scss'",
|
|
"position": "bottom",
|
|
"requires": "symfony/asset-mapper",
|
|
"warn_if_missing": true
|
|
}
|
|
],
|
|
"conflict": {
|
|
"symfony/asset-mapper": "<6.3"
|
|
}
|
|
}
|