mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-12 07:36:34 +03:00
41 lines
1.4 KiB
JSON
41 lines
1.4 KiB
JSON
{
|
|
"manifests": {
|
|
"fastfony/tailwind-webpack-encore-pack": {
|
|
"manifest": {
|
|
"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
|
|
}
|
|
]
|
|
},
|
|
"files": {
|
|
"postcss.config.mjs": {
|
|
"contents": [
|
|
"export default {",
|
|
" plugins: {",
|
|
" \"@tailwindcss/postcss\": {},",
|
|
" },",
|
|
"};",
|
|
""
|
|
],
|
|
"executable": false
|
|
}
|
|
},
|
|
"ref": "16e3f22e20897e0fa3895619231e8ad658677322"
|
|
}
|
|
}
|
|
}
|