Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
e267e40
feat(ssr): adding ssr to all projects
Feb 19, 2025
2c9f5e4
fix(*): wrong name of AppConfig
Feb 19, 2025
d3c55fc
Merge branch 'master' into enable-ssr
Feb 19, 2025
84e6ddd
Merge branch 'vnext' into enable-ssr
Feb 19, 2025
805c747
chore(*): fixing lint errors
Feb 20, 2025
1e308a8
chore(*): removing an outdated isIE prop
Feb 20, 2025
129ee1f
Merge branch 'vnext' into enable-ssr
Feb 25, 2025
2b9a32a
fix(*): injecting document where it wasn't
Feb 25, 2025
605b3b9
chore(ssr): working through the samples that don't build
Feb 27, 2025
bf845fc
chore(*): updating packages
Feb 27, 2025
b3b9539
Merge branch 'vnext' into enable-ssr
Feb 27, 2025
9c4d5b4
chore(*): discovering what routes fail with prerender
Feb 27, 2025
4a7385c
Merge branch 'enable-ssr' of https://github.com/IgniteUI/igniteui-ang…
Feb 27, 2025
ed8565a
chore(ssr): stabilizing app-lob build
Feb 27, 2025
c434ec4
fix(build): excluding more routes from prerendering
Feb 28, 2025
546b2a1
chore(*): shortening a route path without repetition
Feb 28, 2025
b37731b
feat(ssr): switching to static output mode
Feb 28, 2025
77fe86d
fix(build): excluding more src routes from prerendering
Feb 28, 2025
fcbf95e
Merge branch 'vnext' into enable-ssr
Mar 4, 2025
2bd7bf3
chore(*): package updates and small fixes
Mar 4, 2025
6686e2e
chore(*): enabling all routes under /samples also
Mar 6, 2025
aa4946e
Merge branch 'vnext' into enable-ssr
ChronosSF Mar 7, 2025
4a1a61f
Merge branch 'vnext' of https://github.com/IgniteUI/igniteui-angular-…
Mar 8, 2025
92ce7ce
chore(*): some minor fixes
Mar 11, 2025
b295b18
Merge branch 'enable-ssr' of https://github.com/IgniteUI/igniteui-ang…
Mar 11, 2025
ac716eb
Merge branch 'vnext' into enable-ssr
ChronosSF Mar 12, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 29 additions & 8 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"index": "src/index.html",
"tsConfig": "src/tsconfig.app.json",
"polyfills": [
"zone.js",
"hammerjs"
"zone.js",
"hammerjs"
],
"assets": [
"src/assets",
Expand All @@ -35,9 +35,16 @@
"sourceMap": true,
"progress": true,
"stylePreprocessorOptions": {
"includePaths": ["node_modules"]
"includePaths": [
"node_modules"
]
},
"browser": "src/main.ts"
"browser": "src/main.ts",
"server": "src/main.server.ts",
"outputMode": "static",
"ssr": {
"entry": "src/server.ts"
}
},
"configurations": {
"production": {
Expand Down Expand Up @@ -152,10 +159,17 @@
"optimization": false,
"namedChunks": true,
"stylePreprocessorOptions": {
"includePaths": ["node_modules"]
"includePaths": [
"node_modules"
]
},
"preserveSymlinks": true,
"browser": "projects/app-lob/src/main.ts"
"browser": "projects/app-lob/src/main.ts",
"server": "projects/app-lob/src/main.server.ts",
"outputMode": "static",
"ssr": {
"entry": "projects/app-lob/src/server.ts"
}
},
"configurations": {
"production": {
Expand Down Expand Up @@ -276,9 +290,16 @@
"optimization": false,
"namedChunks": true,
"stylePreprocessorOptions": {
"includePaths": ["node_modules"]
"includePaths": [
"node_modules"
]
},
"browser": "projects/app-crm/src/main.ts"
"browser": "projects/app-crm/src/main.ts",
"server": "projects/app-crm/src/main.server.ts",
"outputMode": "static",
"ssr": {
"entry": "projects/app-crm/src/server.ts"
}
},
"configurations": {
"production": {
Expand Down
Loading
Loading