I am trying to render my Angular 7 application with SSR using Angular Universal from this link https://angular.io/guide/universal. I had thought I had everything working from there since I was able to view the page source and see everything that is inside of the app.component rendered to the page. However, I am unable to render any of the routes inside of the router-outlet
tag
I have simply stripped my app down to be doing exactly what the documentation says. I read in there something about ensuring ModuleMapLoaderModule
is inside of the app.server.module in order for lazy loading to work. This does come default with the angular-cli command for universal so I am not sure what is going on.
app.server.module
import { NgModule } from '@angular/core';
import { ServerModule } from '@angular/platform-server';
import { ModuleMapLoaderModule } from '@nguniversal/module-map-ngfactory-loader';
import { AppComponent } from './app.component';
import { AppModule } from './app.module';
@NgModule({
imports: [
AppModule,
ServerModule,
ModuleMapLoaderModule,
],
bootstrap: [AppComponent],
})
export class AppServerModule {}
tsconfig.server.json
"extends": "./tsconfig.app.json",
"compilerOptions": {
"outDir": "../out-tsc/app-server",
},
"angularCompilerOptions": {
"entryModule": "app/app.server.module#AppServerModule"
}
}
server.ts
import 'zone.js/dist/zone-node';
import { enableProdMode } from '@angular/core';
// Express Engine
import { ngExpressEngine } from '@nguniversal/express-engine';
// Import module map for lazy loading
import { provideModuleMap } from '@nguniversal/module-map-ngfactory-loader';
import * as express from 'express';
import { join } from 'path';
// Faster server renders w/ Prod mode (dev mode never needed)
enableProdMode();
// Express server
const app = express();
const PORT = process.env.PORT || 4000;
const DIST_FOLDER = join(process.cwd(), 'browser');
// * NOTE :: leave this as require() since this file is built Dynamically from webpack
const { AppServerModuleNgFactory, LAZY_MODULE_MAP } = require('./dist/server/main');
// Our Universal express-engine (found @ https://github.com/angular/universal/tree/master/modules/express-engine)
app.engine('html', ngExpressEngine({
bootstrap: AppServerModuleNgFactory,
providers: [
provideModuleMap(LAZY_MODULE_MAP)
]
}));
app.set('view engine', 'html');
app.set('views', DIST_FOLDER);
// Serve static files from /browser
app.get('*.*', express.static(DIST_FOLDER, {
maxAge: '1y'
}));
// All regular routes use the Universal engine
app.get('*', (req, res) => {
res.render(join(DIST_FOLDER, 'index.html'), { req });
});
// Start up the Node server
app.listen(PORT, () => {
console.log(`Node Express server listening on http://localhost:${PORT}`);
});
Rendered output
<html lang="en">
<head>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- ...Rendered CSS styles... -->
<body>
<app-root _nghost-sc0="" ng-version="7.2.15">
<!-- ...Header code that has been rendered... -->
<router-outlet _ngcontent-sc0=""></router-outlet> <!-- This is where I am expecting the content of the route to be -->
<!-- ...Footer code that has been rendered... -->
</app-root>
</body>
</html>
app.routing.module.ts
// Angular Imports
// Pages
// ...Page Imports..
const routes: Routes = [
{ path: '', component: HomePageComponent, pathMatch: 'full' },
{ path: 'events/:id', component: EventDetailPageComponent }, // This is the detail page I am testing with
{ path: 'unknown-error', component: UnknownErrorPageComponent },
{ path: '404', component: NotFoundPageComponent },
{ path: '**', redirectTo: '404' }
];
@NgModule({
imports: [
CommonModule,
RouterModule.forRoot(routes),
],
exports: [
RouterModule,
]
})
export class AppRoutingModule { }
I have been having basically zero luck attempting to find accurate documentation on this for Angular 7 and any help would be greatly appreciated! Thanks