Skip to content

Commit

Permalink
fix(@nguniversal/express-engine): fix formatting in generated `server…
Browse files Browse the repository at this point in the history
….ts`

Add spacing to match other file generated by the Angular CLI

(cherry picked from commit 979f6f5)
  • Loading branch information
alan-agius4 committed Nov 14, 2022
1 parent 3352347 commit 6d5500d
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import 'zone.js/node';

import {APP_BASE_HREF} from '@angular/common';
import {ngExpressEngine} from '@nguniversal/express-engine';
import { APP_BASE_HREF } from '@angular/common';
import { ngExpressEngine } from '@nguniversal/express-engine';
import * as express from 'express';
import {existsSync} from 'fs';
import {join} from 'path';
import { existsSync } from 'fs';
import { join } from 'path';

import {AppServerModule} from './src/<%= stripTsExtension(main) %>';
import { AppServerModule } from './src/<%= stripTsExtension(main) %>';

// The Express app is exported so that it can be used by serverless Functions.
export function app(): express.Express {
Expand Down

0 comments on commit 6d5500d

Please sign in to comment.