mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
- This update is needed to implement the changes in `ng add localize` https://github.com/angular/angular/pull/47569 - Add missing `root` options to all `angular.json`, this is required as otherwise the angular.json validation will fail. - Remove `require.context` from test.ts integration test, as this is no longer needed. - Update payloads golden files. PR Close #47584
10 lines
260 B
TypeScript
10 lines
260 B
TypeScript
import '@angular/platform-server/init';
|
|
import { enableProdMode } from '@angular/core';
|
|
|
|
import { environment } from './environments/environment';
|
|
|
|
if (environment.production) {
|
|
enableProdMode();
|
|
}
|
|
|
|
export { AppServerModule } from './app/app.server.module';
|