UNPKG
ohayolibs
Version:
latest (1.0.1)
1.0.1
1.0.0
Ohayo is a set of essential modules for ohayojp.
ohayolibs
/
src
/
app
/
app.server.module.ts
11 lines
(9 loc)
•
304 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{ NgModule }
from
'@angular/core'
;
import
{ ServerModule }
from
'@angular/platform-server'
;
import
{ AppComponent }
from
'./app.component'
;
import
{ AppModule }
from
'./app.module'
;
@NgModule(
{ imports: [AppModule, ServerModule], bootstrap: [AppComponent], }
)
export
class
AppServerModule
{}