An Angular 2 Webpack Starter kit featuring Angular 2, Router, TypeScript, and Webpack by AngularClass
Uncaught TypeError: jit_val_0 is not a function
at eval (ng:///AppModule/module.ngfactory.js:3)
at evalExpression (vendor.dll.js:71552)
at jitStatements (vendor.dll.js:71564)
at JitCompiler._compileModule (vendor.dll.js:71845)
at vendor.dll.js:71784
at Object.then (vendor.dll.js:46693)
at JitCompiler._compileModuleAndComponents (vendor.dll.js:71782)
at JitCompiler.compileModuleAsync (vendor.dll.js:71711)
at PlatformRef_._bootstrapModuleWithZone (vendor.dll.js:6388)
at PlatformRef_.bootstrapModule (vendor.dll.js:6374)
at HTMLDocument.main (main.bundle.js:7650)
at ZoneDelegate.invokeTask (polyfills.dll.js:4522)
at Zone.runTask (polyfills.dll.js:4289)
at ZoneTask.invokeTask [as invoke] (polyfills.dll.js:4596)
at invokeTask (polyfills.dll.js:5462)
at HTMLDocument.globalZoneAwareCallback (polyfills.dll.js:5488)
npm run build:aot:prod
Error: Error encountered resolving symbol values statically. Reference to a local (non-exported) symbol 'routes'. Consider exporting the symbol (position 19:7 in the original .ts file), resolving symbol HomeRoutingModule in /var/www/html/ng2-lab/prowebcli/src/app/modules/home/home-routing.module.ts
Hello All
I have a issue in AOT with tree shaking
Scenerio 1:
When I build by application with AOT, and then running the dist folder using http-server, the application opens in the browser and works fine, No issues here :grinning:.
Scenerio 2:
But when I add tree shaking
code in my file : webpack.config.js
along with AOT build
new HtmlWebpackPlugin({ title: 'Tree-shaking' })
reference : http://jakewiesler.com/tree-shaking-es6-modules-in-webpack-2/
and on running the AOT build folder, the browser displays error in the console like ERROR Error: The selector "app" did not match any elements
leaving with blank screen
Now If I remove that tree-shaking
code from web-pack and run the AOT build then the Application again works properly
Not Sure, what else is missing.
please have a look at my issue, and help me if you have any idea
npm run build:aot:prod
angular 4 starter kit with webpack
and a lot of features (https://github.com/AngularClass/angular-starter), which files/folder I can delete for starting new project. Thanks.
var proxies = require("../proxy.config.json");
var proxy_url = proxies.base_api_url;
...
devServer: {
proxy: {
'/api_request': {
target: proxy_url,
secure: false
}
}
},
Wanted to know wether module build will be allow to deploy the module alone..
example: in my application i have one module which is used with lazy loading .
and i deploy the complete application including the lazy loaded module.
after a while there is a change in lazy loaded module. Now ther are two ways of deploying
1) Build the complete application which will build the lazy loaded module as well and deploy the complete code
2) build only the lazy loaded module and deploy it alone ( Is this possible already ?)