Skip to content
Merged
Changes from 1 commit
Commits
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
Prev Previous commit
Next Next commit
fixup! fix(@angular/build): simplify SSL handling for with SSR
  • Loading branch information
alan-agius4 committed Nov 7, 2025
commit f2a4b3cd9ca654703ce2c511350c62a319a59105
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ export function createAngularServerSideSSLPlugin(): Plugin {
name: 'angular-ssr-ssl-plugin',
apply: 'serve',
async configureServer({ config, httpServer }) {
console.log('config server');
const {
ssr,
server: { https },
Expand All @@ -35,7 +34,6 @@ export function createAngularServerSideSSLPlugin(): Plugin {
);

httpServer?.on('close', () => {
console.log('setting original');
setGlobalDispatcher(originalDispatcher);
});
},
Expand Down