Description
Please provide us with the following information:
OS?
Windows 10.
Versions.
angular-cli: 1.0.0-beta.24
node: 5.11.0
os: win32 ia32
@angular/common: 2.1.1
@angular/compiler: 2.1.1
@angular/core: 2.1.1
@angular/forms: 2.1.1
@angular/http: 2.1.1
@angular/platform-browser: 2.1.1
@angular/platform-browser-dynamic: 2.1.1
@angular/router: 3.1.1
Question or bug
Generation command:
ng build --aot --prod --no-sourcemap --verbose
With the below standalone and lazy style generation config:
{ "input": "assets/scss/accessibility.style.scss", "output": "accessibility.style.css", "lazy": true }
... generates angular-cli in AOT mode the filename with a random string. Like this:
accessibility.style.**027b05e9f06e48912b48**.bundle.css
That is very frustrating, because I need to know what is the generated file name to injext - with lazy option.
Is there any way to turn off that behaviour? It works fine with ng build command.
Expected generated file name in AOT mode:
accessibility.style.bundle.css
Related thread: #3401
Thank you for your help!