app.module.ngfactory没有构建angular2 aot与webpack编译

时间:2016-12-19 22:41:37

标签: angular angular-material2 webpack-2 angular2-aot

我正在尝试创建一个使用这个平均堆栈分解的种子,但也结合了当前w.i.p的angular-cli和material2,但我无法获得我的npm构建:prod工作。它没有构建app.module.ngfactory

我没有使用ng build我在package.json文件中创建了自己的webpack文件和自己的脚本

windows 10, node @ 6.9.2, angular-cli @ 2.2.3, webpack @ 2.2.0-rc.0, @ angular / materail @ 2.0.0-alpha.11-3

非常感谢任何帮助/建议!

这是main.aot.ts

import './polyfills';
import { platformBrowser } from '@angular/platform-browser';
import { enableProdMode } from '@angular/core';
import { AppModuleNgFactory } from "./public/src/app/app.module.ngfactory";
enableProdMode();
platformBrowser().bootstrapModuleFactory(AppModuleNgFactory);

这是我的app.module

import 'hammerjs';
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { HttpModule } from '@angular/http';
import { MaterialModule } from '@angular/material';
import {AppComponent, DialogContent} from './app.component';
// import { AppComponent } from './app.component';
import { HeaderComponent } from "./shared/header.component";
import { AuthService } from "./auth/auth.service";
import { AuthComponent } from './auth/auth.component';
import { ErrorComponent } from './error/error.component';
import { ErrorService } from './error/error.service';
@NgModule({
  declarations: [
    // AppComponent,
    AuthComponent,
    ErrorComponent,
    AppComponent,
    DialogContent
  ],
  imports: [
    BrowserModule,
    FormsModule,
    MaterialModule.forRoot(),
    HttpModule
  ],
  providers: [AuthService, ErrorService],
  bootstrap: [AppComponent]
})

export class AppModule { }

这是我的gh的链接 MEAN2.0_seed

我希望有人可以提供帮助!

0 个答案:

没有答案