I'm submitting a ... (check one with "x")
Build failed
Current behavior:
Build failed with error message:
"ERROR in ./node_modules/@nebular/eva-icons/eva-icons.module.js
Module not found: Error: Can't resolve 'eva-icons' in '~\ClientApp\node_modules\@nebular\eva-icons'"
Expected behavior:
Build successful
Steps to reproduce:
you can try ”ng add @nebular/[email protected]“
Here is the cause https://github.com/akveo/nebular/issues/1358#issuecomment-481593025. Closing as duplicate.
I managed to get mine working by first installing eva-icons
npm i eva-icons --save
and then running the following command
npm i @nebular/eva-icons --save
Hope it helps
@GregSithole
after doing the above step , still i am facing these issue
ERROR in node_modules/@nebular/eva-icons/eva-icons.module.d.ts(1,10): error TS2305: Module '"C:/Dev/Workspaces/efin-ui/node_modules/@nebular/theme"' has no exported member 'NbIconLib
raries'.
node_modules/@nebular/eva-icons/eva-icons.module.d.ts(1,27): error TS2305: Module '"C:/Dev/Workspaces/efin-ui/node_modules/@nebular/theme"' has no exported member 'NbSvgIcon'.
Thanks for the answer @GregSithole!
@sandeepkamathkr Which @nebular/theme version do you use? Could you please post Angular and Nebular dependencies list from package.json? Looks like you use Nebular prior to 4, which doesn't work with @nebular/eva-icons.
Most helpful comment
I managed to get mine working by first installing eva-icons
npm i eva-icons --saveand then running the following command
npm i @nebular/eva-icons --saveHope it helps