setup Angular app and integrate Docker image build in docker-compose.yml

This commit is contained in:
Thomas Peetz
2025-07-20 11:19:05 +02:00
parent 169b349277
commit 01788286e2
18 changed files with 145 additions and 33 deletions
+9 -10
View File
@@ -5,7 +5,11 @@
"projects": {
"kontor-angular": {
"projectType": "application",
"schematics": {},
"schematics": {
"@schematics/angular:component": {
"style": "scss"
}
},
"root": "",
"sourceRoot": "src",
"prefix": "app",
@@ -14,10 +18,8 @@
"builder": "@angular/build:application",
"options": {
"browser": "src/main.ts",
"polyfills": [
"zone.js"
],
"tsConfig": "tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": [
{
"glob": "**/*",
@@ -25,7 +27,7 @@
}
],
"styles": [
"src/styles.css"
"src/styles.scss"
]
},
"configurations": {
@@ -70,11 +72,8 @@
"test": {
"builder": "@angular/build:karma",
"options": {
"polyfills": [
"zone.js",
"zone.js/testing"
],
"tsConfig": "tsconfig.spec.json",
"inlineStyleLanguage": "scss",
"assets": [
{
"glob": "**/*",
@@ -82,7 +81,7 @@
}
],
"styles": [
"src/styles.css"
"src/styles.scss"
]
}
}