I've following settings inside angular-cli-build
Angular2App(defaults,{
lessCompiler: {
includePaths: [
'src/app'
],
}
})
I'have two test less files in src directory.
test1.less
//some code
test2.less
@import "test1.less";
when I ng build the project it throws an error
Build failed.
File: input (1)
The Broccoli Plugin: [LESSPlugin] failed with:
undefined
I've tried issue 873 temporary solution. The error gone.but could not find any compiled css files. please help. how you compile customized bootstrap less files in angular2 project which is built by angular-cli.
how could I extend the bootstrap's less file's(stayed inside node_modules) with my custom lesses