mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-09 16:16:41 +08:00
12 lines
360 B
TypeScript
12 lines
360 B
TypeScript
import { enableProdMode } from '@angular/core';
|
|
|
|
import { environment } from './environments/environment';
|
|
|
|
if (environment.production) {
|
|
enableProdMode();
|
|
}
|
|
|
|
export { AppServerModule } from './app/app.server.module';
|
|
export { ngExpressEngine } from '@nguniversal/express-engine';
|
|
export { provideModuleMap } from '@nguniversal/module-map-ngfactory-loader';
|