Switch project styles from SCSS to CSS and add Tailwind

Replaces SCSS files with CSS equivalents, updates Angular configuration to use CSS for styles, and adds Tailwind CSS with PostCSS integration. Updates dependencies in package.json and package-lock.json to include tailwindcss, postcss, and related plugins. The app.html template is replaced with a minimal version, removing the previous placeholder content.
This commit is contained in:
2025-10-16 17:25:33 +02:00
parent 30a9ca3f6c
commit 60add3a923
8 changed files with 624 additions and 360 deletions

View File

@@ -7,7 +7,7 @@
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "scss",
"style": "css",
"standalone": false
},
"@schematics/angular:directive": {
@@ -29,7 +29,7 @@
"zone.js"
],
"tsConfig": "tsconfig.app.json",
"inlineStyleLanguage": "scss",
"inlineStyleLanguage": "css",
"assets": [
{
"glob": "**/*",
@@ -37,7 +37,7 @@
}
],
"styles": [
"src/styles.scss"
"src/styles.css"
]
},
"configurations": {
@@ -87,7 +87,7 @@
"zone.js/testing"
],
"tsConfig": "tsconfig.spec.json",
"inlineStyleLanguage": "scss",
"inlineStyleLanguage": "css",
"assets": [
{
"glob": "**/*",
@@ -95,7 +95,7 @@
}
],
"styles": [
"src/styles.scss"
"src/styles.css"
]
}
}