angular2-aot-webpack
angular2-aot-webpack copied to clipboard
Angular AOT (Ahead Of Time) offline compilation example with Webpack
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...
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...