Files
symfony-flex-recipes-contrib/fastfony/tailwind-webpack-encore-pack/1.0/manifest.json
T
neothoneandGitHub 63763e3e49 Add fastfony/tailwind-webpack-encore-pack recipe (#1869)
* Add fastfony/tailwind-webpack-encore-pack recipe

* apply copilot suggestion
2025-10-20 00:02:02 +04:00

21 lines
570 B
JSON

{
"copy-from-recipe": {
"postcss.config.mjs": "postcss.config.mjs"
},
"add-lines": [
{
"file": "webpack.config.js",
"position": "after_target",
"warn_if_missing": true,
"target": " .splitEntryChunks()",
"content": " .enablePostCssLoader()"
},
{
"file": "assets/styles/app.css",
"position": "top",
"content": "@import \"tailwindcss\";\n@source not \"../../public\";\n",
"warn_if_missing": false
}
]
}