I'm using angular-cli-1.6.3 for bundling my project. I try to rename lazy loaded chunk name into valid module name. But it is not working. Code snippet given below,
{
path: 'lazy',
loadChildren: './lazy/module#LazyModule?chunkName=LazyModule'
}
I'm using angular-cli-1.6.3 for bundling my project. I try to rename lazy loaded chunk name into valid module name. But it is not working. Code snippet given below,
{
path: 'lazy',
loadChildren: './lazy/module#LazyModule?chunkName=LazyModule'
}
you should be using
-nc
flagor
Update 1 : Based on Comment
to remove the hash numbers set the
--output-hashing
to false as belowDocumentation Link