feat: Initialize Angular SSR application with core pages, components, and server setup.

This commit is contained in:
Timo
2026-01-03 12:53:37 +01:00
parent 0ac17ef155
commit b52e47b653
28 changed files with 1115 additions and 461 deletions

View File

@@ -8,9 +8,13 @@
"build": "node version.js && ng build",
"build.dev": "node version.js && ng build --configuration dev --output-hashing=all",
"build.prod": "node version.js && ng build --configuration prod --output-hashing=all",
"build:ssr": "node version.js && ng build --configuration prod",
"build:ssr:dev": "node version.js && ng build --configuration dev",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"serve:ssr:bizmatch": "node dist/bizmatch/server/server.mjs"
"serve:ssr": "node dist/bizmatch/server/server.mjs",
"serve:ssr:bizmatch": "node dist/bizmatch/server/server.mjs",
"dev:ssr": "NODE_OPTIONS='--import ./ssr-dom-preload.mjs' ng serve"
},
"private": true,
"dependencies": {
@@ -82,4 +86,4 @@
"tailwindcss": "^3.4.4",
"typescript": "~5.4.5"
}
}
}