angular2-aot-webpack icon indicating copy to clipboard operation
angular2-aot-webpack copied to clipboard

Angular AOT (Ahead Of Time) offline compilation example with Webpack

Results 3 angular2-aot-webpack issues
Sort by recently updated
recently updated
newest added

Having an issue with using absolute path's in main.module: ```js import { HelloWorldComponent } from 'src/app/components/hello-world.component'; ``` getting: `UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 2): Error: Unexpected value 'HelloWorldComponent' declared...

enhancement

Whole project is nice example :) That will be great option to add prod webpack config, without sourcemaps etc, only clear js and css. Are you planning that kind of...

We are trying to load a CSS file into the HelloWorld component using: @Component({ selector: 'hello-world-app', templateUrl: 'hello-world.template.html', styleUrls: ['hello.css'], encapsulation: ViewEncapsulation.None }) this throws with `You may need an...