fix(portal-shell): use .postcssrc.json so tailwind utilities are emitted #75

Merged
julien merged 1 commits from fix/portal-shell/tailwind-source-discovery into main 2026-05-10 02:55:16 +02:00
3 changed files with 6 additions and 6 deletions
Showing only changes of commit bb9654cc32 - Show all commits
+5
View File
@@ -0,0 +1,5 @@
{
"plugins": {
"@tailwindcss/postcss": {}
}
}
-5
View File
@@ -1,5 +0,0 @@
module.exports = {
plugins: {
'@tailwindcss/postcss': {},
},
};
+1 -1
View File
@@ -21,7 +21,7 @@ apf_portal/
│ ├── portal-shell/ # Angular 21 SPA (zoneless, standalone, Signals, Vitest, SCSS)
│ │ ├── public/ # static assets
│ │ ├── src/ # entry, app config, routes, styles
│ │ ├── postcss.config.js # Tailwind PostCSS plugin
│ │ ├── .postcssrc.json # Tailwind PostCSS plugin (required by @angular/build esbuild — postcss.config.js is ignored)
│ │ └── project.json # Nx project config (build, serve, test, lint targets)
│ ├── portal-shell-e2e/ # Playwright e2e for portal-shell
│ ├── portal-bff/ # NestJS 11 BFF (Express adapter, ValidationPipe, Jest)